题解 | #月均完成试卷数不小于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

全部评论

相关推荐

头像
11-26 16:06
已编辑
中南大学 后端
快手电商 后端 23k-35k
点赞 评论 收藏
分享
10-11 17:30
湖南大学 C++
我已成为0offer的糕手:羡慕
点赞 评论 收藏
分享
贺兰星辰:不要漏个人信息,除了简历模板不太好以外你这个个人简介是不是太夸大了...
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务