题解 | #近三个月未完成试卷数为0的用户完成情况#

近三个月未完成试卷数为0的用户完成情况

https://www.nowcoder.com/practice/4a3acb02b34a4ecf9045cefbc05453fa

方法1:dense_rank
with a as (
    select uid,start_time,submit_time,
           dense_rank() over(partition by uid order by date_format(start_time,"%Y%m") desc) rank_current
    from exam_record)

select uid,
       count(submit_time) exam_complete_cnt
from a
where rank_current<=3 
group by uid 
having count(start_time)=count(submit_time)
order by exam_complete_cnt desc,uid desc

方法2:select() 代替 dense_rank
select uid,count(submit_time) exam_complete_cnt
from
    (select d1.uid,d1.start_time,d1.submit_time,
        (select count(distinct date_format(d2.start_time,"%Y%m"))
        from exam_record d2
        where date_format(d2.start_time,"%Y%m")> date_format(d1.start_time,"%Y%m") and d2.uid=d1.uid)+1 rank_current
    from exam_record d1) e
where rank_current<=3
group by uid
having count(start_time)=count(submit_time)
order by exam_complete_cnt desc,uid desc

全部评论

相关推荐

不愿透露姓名的神秘牛友
10-12 10:48
已编辑
秋招之苟:邻居家老哥19届双2硕大厂开发offer拿遍了,前几天向他请教秋招,他给我看他当年的简历,0实习实验室项目技术栈跟开发基本不沾边😂,我跟他说这个放在现在中厂简历都过不了
点赞 评论 收藏
分享
废铁汽车人:秋招真是牛鬼蛇神齐聚一堂
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务