select * from test limit 3,2
表示从表中查询2条数据,从第4条开始
select * from test limt 5
表示从表中查询前5条记录
select * from test limit 4 offset 2
表示从第3记录开始,读取4条记录
select * from test limit 3,2
表示从表中查询2条数据,从第4条开始
select * from test limt 5
表示从表中查询前5条记录
select * from test limit 4 offset 2
表示从第3记录开始,读取4条记录