MySQL's limietclausule maakt dit gemakkelijk:
SELECT cols
FROM table
LIMIT offset, rowcount
In jouw geval:
LIMIT 49, 50 -- skip rows 0-49, grab the next 50
MySQL's limietclausule maakt dit gemakkelijk:
SELECT cols
FROM table
LIMIT offset, rowcount
In jouw geval:
LIMIT 49, 50 -- skip rows 0-49, grab the next 50