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

相关推荐

投了十几个无人回应
花环鞣: 佬,我隔壁的
点赞 评论 收藏
分享
04-08 21:39
已编辑
Java
点赞 评论 收藏
分享
bangbangba...:感觉三个项目可以融在一起,比如上层是用手写的epoll,然后到tcp聊天层,然后你写了一个后台监控(不过我也不懂c++,但是感觉写一个大项目比三个小项目要好)
我的求职进度条
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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