You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 tbl LIMIT 95,18446744073709551615;
The text was updated successfully, but these errors were encountered:
Hello,
It looks like that the select query builder ignore the offset value if no limit is provided, which it shouldn't :
gives the following statement :
SELECT id FROM "user" ORDER BY id
According to SQL specification, it should work just fine (it does with postgreSQL) :
SELECT id FROM "user" ORDER BY id OFFSET 5
With mySQL, as explained in the documentation (http://dev.mysql.com/doc/refman/5.7/en/select.html), it should be handled this way :
The text was updated successfully, but these errors were encountered: