limit y 分句表示: 读取 y 条数据
limit x, y 分句表示: 跳过 x 条数据,读取 y 条数据
limit y offset x 分句表示: 跳过 x 条数据,读取 y 条数据
select * from testtable limit 0, 20; select * from testtable limit 20 offset 0;
select * from testtable limit 20, 20; select * from testtable limit 20 offset 20;
select * from testtable limit 40, 20; select * from testtable limit 20 offset 40;