MySQLs Begrenzungsklausel macht dies einfach:
SELECT cols
FROM table
LIMIT offset, rowcount
In Ihrem Fall:
LIMIT 49, 50 -- skip rows 0-49, grab the next 50
MySQLs Begrenzungsklausel macht dies einfach:
SELECT cols
FROM table
LIMIT offset, rowcount
In Ihrem Fall:
LIMIT 49, 50 -- skip rows 0-49, grab the next 50