SQLinfo.ru - Все о MySQL

Форум пользователей MySQL

Задавайте вопросы, мы ответим

Вы не зашли.

#1 10.02.2012 21:58:14

Redyv
Участник
Зарегистрирован: 10.02.2012
Сообщений: 1

Использование "LIMIT" в MySQL 5.5.19

Прошу помочь.
Установлен 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

Как мне корректно произвести данную выборку?

Неактивен

 

#2 10.02.2012 22:21:10

vasya
Архат
MySQL Authorized Developer
Откуда: Орел
Зарегистрирован: 07.03.2007
Сообщений: 5842

Re: Использование "LIMIT" в MySQL 5.5.19

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;

Неактивен

 

Board footer

Работает на PunBB
© Copyright 2002–2008 Rickard Andersson