码迷,mamicode.com
首页 > 其他好文 > 详细

【2020090401】排名 rank over的用法

时间:2020-09-17 13:16:08      阅读:34      评论:0      收藏:0      [点我收藏+]

标签:用法   oracl   sele   sel   span   排名   ecs   student   code   

(1)rank over(order by 列名)------该函数只适用于oracle

例:

1 select sid, sname,  rank() over (order by score) as srank from sc;

(2)rank over(partition by 列名,order by 列名)

例:

1 select name, age, score, rank() over (partition by age order by score decs) as rank_num from student;

(按年龄分组,组内按分数降序排名)

 

注:dense_rank() 连续排名

  rank () 可不连续排名

【2020090401】排名 rank over的用法

标签:用法   oracl   sele   sel   span   排名   ecs   student   code   

原文地址:https://www.cnblogs.com/zhouxue0621/p/13614201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!