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

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

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

with t1 as (
    select
        uid
    from exam_record
    where submit_time is not null
    group by uid
    having(count(submit_time)/count(DISTINCT substr(submit_time,1,7))>=3)
)
select
    i.tag
    ,count(r.exam_id) as tag_cnt
from examination_info i join exam_record r using(exam_id)
where r.uid in (select * from t1)
group by i.tag
order by tag_cnt desc
全部评论

相关推荐

永不遗忘:才这么点算什么拉黑,我初筛连着挂几十次了,最后还是能进面
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务