Monday, September 17, 2012

MySQL top query - limit usage

select * from book
limit 2,2;

means start from the third record, and goes two.
same as :

select * from book
limit 2 offset 2;

We can use page size , 2 records/per page

select * from book
limit 2,2;

No comments:

Post a Comment