题解 | #月均完成试卷数不小于3的用户爱作答的类别#

月均完成试卷数不小于3的用户爱作答的类别

https://www.nowcoder.com/practice/b1d13efcfa0c4ecea517afbdb9090845

with table1 as(
    select uid,start_time,submit_time,tag
    from exam_record left join examination_info using(exam_id)
),
table2 as(
    select uid 
    from table1
    where submit_time is not null 
    group by uid,date_format(submit_time,'%Y%m')
    having count(submit_time) >= 3
)
select tag, count(start_time) as tag_cnt 
from table1
where uid in (select uid from table2)
group by tag
order by tag_cnt desc

全部评论

相关推荐

没有offer的呆呆:薪资有的时候也能说明一些问题,太少了活不活得下去是一方面,感觉学习也有限
点赞 评论 收藏
分享
在看数据的傻狍子很忙碌:学生思维好重,而心很急,自己想想真的能直接做有难度的东西吗?任何错误都是需要人担责的,你实习生可以跑路,你的同事领导呢
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务