MySQL:s gränsklausul gör detta enkelt:
SELECT cols
FROM table
LIMIT offset, rowcount
I ditt fall:
LIMIT 49, 50 -- skip rows 0-49, grab the next 50
MySQL:s gränsklausul gör detta enkelt:
SELECT cols
FROM table
LIMIT offset, rowcount
I ditt fall:
LIMIT 49, 50 -- skip rows 0-49, grab the next 50