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

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

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

-- 1.统计出当月完成次数>=3的有哪些用户(去重)

-- 2.统计这些用户作答了哪些试卷(去重)

-- 3.统计这些试卷的作答次数


select t3.tag,count(t2.exam_id) tag_cnt
from exam_record t2, examination_info t3
where
t2.uid in (
    select distinct t1.uid t1_uid
    from 
    (
        select uid , count(uid) cnt_uid
        from exam_record
        where score is not null
        group by left(start_time , 7) , uid
        having cnt_uid >= 3
    ) t1

) 
and t2.exam_id = t3.exam_id
group by t2.exam_id
order by tag_cnt desc

全部评论

相关推荐

头像
11-10 15:56
东北大学 Java
帆软的感谢信真是又臭又长
等待offer降临的ylq:而且他内部是真的好,实习无转正有感而发
投递帆软软件等公司10个岗位 > 你都收到了哪些公司的感谢信?
点赞 评论 收藏
分享
09-25 10:34
东北大学 Java
多面手的小八想要自然醒:所以读这么多年到头来成为时代车轮底下的一粒尘
点赞 评论 收藏
分享
尊尼获获:闺蜜在哪?
点赞 评论 收藏
分享
1 1 评论
分享
牛客网
牛客企业服务