Forum Moderators: coopster
SELECT * FROM `tablename` ORDER BY `date` DESC LIMIT 0,50; // fetches rows 1-50
SELECT * FROM `tablename` ORDER BY `date` DESC LIMIT 50,50; // fetches rows 51-100
The mistake I constantly make is thinking the second number is the last row I want to fetch, when it fact it is the quantity of rows to select.
And the manual page that talks about LIMIT [dev.mysql.com], for reference.