Задавайте вопросы, мы ответим
Вы не зашли.
Прошу помочь.
Установлен MySQL 5.5.19
Задаю элементарную выборку из таблицы:
select * from table limit 5,-1;
т.е. хочу выбрать из таблицы все строки начиная с шестой.
Выдается ошибка:
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-1' at line 1
Как мне корректно произвести данную выборку?
Неактивен
http://dev.mysql.com/doc/refman/5.5/en/select.html
The LIMIT clause can be used to constrain the number of rows returned by the SELECT statement. LIMIT takes one or two numeric arguments, which must both be nonnegative integer constants
Redyv написал:
хочу выбрать из таблицы все строки начиная с шестой.
Как мне корректно произвести данную выборку?
To retrieve all rows from a certain offset up to the end of the result set, you can use some large number for the second parameter. This statement retrieves all rows from the 96th row to the last:
select * from table limit 5,1000000;
Неактивен