row_number() over()函数用法

语句作用:分组排序计算排名

语法格式:row_number() over(partition by 分组列 order by 排序列 desc) as 别名

注意:使用该函数时,可以不写partition by分组列,但order by不可以少

在使用 row_number() over()函数时候,over()里头的分组以及排序的执行晚于 where 、group by、  order by 的执行。

 


下面来看一下练习

首先是数据表

Students学生表

row_number() over()函数用法_第1张图片

Score成绩表

row_number() over()函数用法_第2张图片 

练习:按班级和科目分组,给每个人一个名次 

select students.stuName,students.className,score.sub,score.sco,
row_number() over(partition by className,sub order by sco desc)as rank
from students
inner join score on students.stuId=score.stuId

 row_number() over()函数用法_第3张图片

 

练习:按班级和学科分组,找出每班每科目的第一名 

select *from(select stu.stuName,stu.className,sco.sub,sco.sco,row_number() over(partition by className,sub order by sco desc)as rank
from students as stu
inner join score as sco on stu.stuId=sco.stuId
) t--别名不能忘
where rank<2 --排名小于2

row_number() over()函数用法_第4张图片 

 

你可能感兴趣的:(ry实习,sql)