题解 | #每类试卷得分前3名#

每类试卷得分前3名

http://www.nowcoder.com/practice/255aa1863fe14aa88694c09ebbc1dbca

重点是理解题意

将每类试卷的最大值、最小值查出来,并根据题型、uid进行分组

这里可以进行连续排列:

partition by tag order by max_score desc,min_score desc,uid desc

(如果两人最大分数相同,选择最小分数大者,如果还相同,选择uid大者)

select  tag as tid,uid, rk1 as ranking from 
(select *, rank()over(partition by tag order by max_score desc,min_score desc,uid desc) as rk1 from 
(select tag,es.uid,max(score) as max_score,min(score) as min_score
 from examination_info ex
left join exam_record es
on ex.exam_id=es.exam_id
group by tag,es.uid ) e
)a
where rk1<=3
全部评论

相关推荐

暴走萝莉莉:这是社招场吧,作为HR说个实话:这个维护关系的意思是要有政府资源,在曾经的工作中通过人脉资源拿下过大订单的意思。这个有相关管理经验,意思也是真的要有同岗位经验。应酬什么的对于业务成交来说就算不乐意也是常态,就是要求说话好听情商高,酒量好。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务