/ 中存储网

MySQL数据库limit使用方法简介

2014-07-13 16:31:23 来源:中存储网
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;