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

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

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

select 
    tag,
    count(tag) as tag_cnt
from
    exam_record as c
inner join examination_info as d 
on c.exam_id = d.exam_id
where uid in(
    select 
        uid
    from
        exam_record 
    where submit_time is not null
    group by uid
    having count(exam_id)/count(distinct date_format(start_time,'%Y%m')) >= 3
)
group by tag
order by tag_cnt desc;

注意,使用子查询时,in()括号里的子查询只能返回一列,否则会报错

全部评论

相关推荐

03-28 16:43
佛山大学 Java
在度假的布拉德很想退...:你这实习项目写的也太简单了吧?业务加技术难点要体现出来呀,你这写的都不知道具体干了什么
点赞 评论 收藏
分享
牛客20485985...:抱抱😘,首先你还有春招,然后就算这时候没上岸也没关系,大部分人都是这样,毕业了再找也成,最后工作只是生活的一小部分,找到工作也不是一个必须的事情。不要气馁不要焦虑你只是陷入了短暂的低谷,你也一直有退路
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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