select * from users limit 10, 1; // 取偏移量为10后的第一条数据 select * from users limit 1 offset 10 // 一样的结果 只是写法的差异,内部结果处理逻辑及结果都一致.