题解 | #各用户等级的不同得分表现占比#

各用户等级的不同得分表现占比

http://www.nowcoder.com/practice/ebff819fd38c46db8a42dfe43ca7b33a

select level,score_grade,round(count(1)/level_cn,3) as ratio
from (
    select level,score_grade,count(1)over(partition by level) as level_cn
    from (
        select level,
               case when score >= 90 then '优' 
                    when score >= 75 and score < 90 then '良'
                    when score >= 60 and score < 75 then '中'
                    else '差' end as score_grade
        from user_info t1
        join exam_record t2 on t1.uid = t2.uid
        where score is not null
        ) t
    ) t3
group by level,score_grade,level_cn
order by level desc,ratio desc

全部评论

相关推荐

10-09 22:05
666 C++
找到工作就狠狠玩CSGO:报联合国演讲,报电子烟设计与制造
点赞 评论 收藏
分享
09-27 14:42
已编辑
浙江大学 Java
未来未临:把浙大放大加粗就行
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务