select * from table limit 2,1;
从下标为2开始,读取1条数据


select * from table limit 2 offset 1;
从下标为2(1 + 1)开始取2条数据