select * from tables limit offset, numbers
如语句意思,numbers是条数限制,offset 是从第几条取。
select * from tables limit 10,5
取得是 11-15
如果要从头去的话,可以不要 offset
select * from tables 10
取得是 1-10 ,此时 offset = 0;
2014-07-13 16:31:23