MySQL's begrænsningsklausul gør dette nemt:
SELECT cols
FROM table
LIMIT offset, rowcount
I dit tilfælde:
LIMIT 49, 50 -- skip rows 0-49, grab the next 50
MySQL's begrænsningsklausul gør dette nemt:
SELECT cols
FROM table
LIMIT offset, rowcount
I dit tilfælde:
LIMIT 49, 50 -- skip rows 0-49, grab the next 50