Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OFFSET without LIMIT in mysql [duplicate]

Is there any way to use OFFSET without LIMIT in mysql? I tried many ways and many times. I also searched a lot.

like image 464
padippist Avatar asked Aug 31 '25 04:08

padippist


1 Answers

No there is no way. You need to provide the LIMIT.

Then manual says:

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.

like image 156
Rahul Tripathi Avatar answered Sep 02 '25 17:09

Rahul Tripathi