select * from table limit 2,1;
从下标为2开始,读取1条数据
select * from table limit 2 offset 1;
从下标为2(1 + 1)开始取2条数据
select * from table limit 2,1;
从下标为2开始,读取1条数据
select * from table limit 2 offset 1;
从下标为2(1 + 1)开始取2条数据
3万+
1070
4021

被折叠的 条评论
为什么被折叠?