limit子句可以从结果集中取出一部分数据,常用来实现分页查询
语法规则:
limit beginIndex , length
例如:从学生表中取出前10条数据
select * from student limit 0, 10 ;
共有条评论 网友评论