I would like to construct a query that displays all the results in a table, but is offset by 5 from the start of the table. As far as I can tell, MySQL's LIMIT requires a limit as well as an offset. Is there any way to do this?
|
feedback
|
|
From the MySQL Manual on LIMIT:
| |||||||||||||||||
feedback
|
|
As you mentioned it LIMIT is required, so you need to use the biggest limit possible, which is 18446744073709551615 (maximum of unsigned BIGINT)
| |||||
feedback
|
|
Another approach would be to select an autoimcremented column and then filter it using HAVING.
But I would probably stick with the high limit approach. | ||||
|
feedback
|
|
Just today I was reading about the best way to get huge amounts of data (more than a million rows) from a mysql table. One way is, as suggested, using For example,
It seems that mysql gets all results when you use Source: Answer to this question MySQL Forums. Just take note, the question is about 6 years old. | |||
|
feedback
|