Is there a way to limit the lower range in mysql?

I want to get all rows except the first in my query. How can i do this?

+4
source share
1 answer

You can use a very large number of lines with an offset of 1 .

 LIMIT 1,18446744073709551615 
+1
source

All Articles