码迷,mamicode.com
首页 > 数据库 > 详细

MySQL排名 保留名次空缺 问题

时间:2020-06-24 23:26:42      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:weight   图片   sql   img   技术   inf   http   div   pre   

思路:主要是看每门课程下,每个分数比该课程所有分数小的有几个

 

技术图片

 

 

保留名次空缺:

select a.cid, a.sid, a.score , count(a.score<b.score)+1 as rank
from sc a left join sc b on a.cid=b.cid and a.score<b.score   #笛卡尔积连接, 然后筛选满足a.score<b.score的
group by a.cid, a.sid
order by a.cid, a.score desc;

技术图片

 

 

不保留名次空缺:

select a.cid, a.sid, a.score , count(distinct b.score)+1 as rank  #这里使用的是distinct b.score
from sc a left join sc b on a.cid=b.cid and a.score<b.score   #笛卡尔积连接, 然后筛选满足a.score<b.score的
group by a.cid, a.sid
order by a.cid, a.score desc;

技术图片

 

 

 

中间表的形式:

select a.cid,a.sid,a.score,b.cid,b.sid,b.score
from  sc a left join sc b on a.cid=b.cid and a.score< b.score
order by a.cid, a.score desc;

技术图片

 

MySQL排名 保留名次空缺 问题

标签:weight   图片   sql   img   技术   inf   http   div   pre   

原文地址:https://www.cnblogs.com/bravesunforever/p/13190320.html

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