从第0个开始,获取1000条数据
select * from testtable limit 0, 1000;
select * from testtable limit 1000 offset 0;
从第0个开始,获取1000条数据
select * from testtable limit 0, 1000;
select * from testtable limit 1000 offset 0;
5132
4142

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