题解 | #作答试卷得分大于过80的人的用户等级分布#

作答试卷得分大于过80的人的用户等级分布

https://www.nowcoder.com/practice/5bc77e3a3c374ad6a92798f0ead4c744

# select level, count(level) as level_cnt
# from exam_record 
# left join user_info using(uid)
# left join examination_info using(exam_id)
# where score > 80 and tag = 'SQL'
# group by level
# order by level_cnt desc



with table1 as (
    select uid, tag ,score ,level
    from exam_record left join examination_info using(exam_id)
    left join user_info using(uid)
    where tag = 'SQL' and score > 80 
)
select level , count(distinct uid) as level_cnt
from table1 

group by level 
order by level_cnt desc,level desc

全部评论

相关推荐

03-04 07:14
门头沟学院 C++
黑皮白袜臭脚体育生:老板:都给工作机会了还想要工资,哪来这么多好事
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
正在热议
更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务