select * from table limit 2,1;
从下标为2开始,读取1条数据
select * from table limit 2 offset 1;
从下标为2(1 + 1)开始取2条数据
limit的两种使用方式 && offset
阅读 77
2023-01-17
select * from table limit 2,1;
从下标为2开始,读取1条数据
select * from table limit 2 offset 1;
从下标为2(1 + 1)开始取2条数据
相关推荐
精彩评论(0)