Presentation is loading. Please wait.

Presentation is loading. Please wait.

学习目标 www.quzixueba.com去自学吧系统教程之Mysql小白入门教程 1、limit的作用 2、实例操作.

Similar presentations


Presentation on theme: "学习目标 www.quzixueba.com去自学吧系统教程之Mysql小白入门教程 1、limit的作用 2、实例操作."— Presentation transcript:

1 学习目标 1、limit的作用 2、实例操作

2 limit的作用 limit子句可以被用于强制 SELECT 语句返回指定的记录数。
limit rows 表示从第一行返回前面最多rows行=limit 0,rows limit offset,rows 表示从offet开始返回多rows行,offset是从0开始算数

3 Limit实例操作 返回年龄在前5的学生名 select name,age from students order by age desc limit 5 返回语文成绩前5的学生名 select name,yw_cj from students_cj order by yw_cj desc limit 5 返回拥有学生人数最多的年级 select grade,count(name) as num from students group by grade order by num desc limit 1 返回1年级年龄最大的人 select name,age from students where grade=1 order by age desc limit 1 返回数学成绩2-4名的人 SELECT * FROM school.students_cj order by sx_cj desc limit 1,3

4 谢谢观看 PPT下载: 自学QQ群:


Download ppt "学习目标 www.quzixueba.com去自学吧系统教程之Mysql小白入门教程 1、limit的作用 2、实例操作."

Similar presentations


Ads by Google