限制查出来的条数- limit
select * from student limit 3;
limit 3表示只查出来3条


从哪开始查
select * from student limit 3,2;
从第3条数据开始,往后查两条。

相关文章: