SELECT * FROM tablename LIMIT 10;
SELECT * FROM tablename LIMIT 10,10;
SELECT * FROM tablename LIMIT 20,10;
SELECT * FROM tablename LIMIT 30,10;
etc...
When you have two arguments to LIMIT, the first number is the row offset, and the second one is the number of rows to show.