you can use limit in mysql.
limit accepts 2 parameters.
this will return 1-10 records.
select * from abcd limit 10
this will return 10-20 records.
select * from abcd limit 10,10
this will return 20-30 records.
select * from abcd limit 20,10
source share