题解 | #每个6/7级用户活跃情况#月份和日期区分开,没有记录显示0所以用左连接

每个6/7级用户活跃情况

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

select t.uid,count(distinct month) as act_month_total
       ,count(distinct if(year(day) = 2021,day,null)) as act_days_2021 
       ,count(distinct if(year(day) = 2021 and flag = 'exam',day,null)) as act_days_2021_exam 
       ,count(distinct if(year(day) = 2021 and flag = 'practice',day,null)) as act_days_2021_question 
from (
    select t1.uid,t2.month,t2.day,t2.flag
    from (select uid from user_info where level in (6,7)) t1
    left join(
            select uid,date_format(start_time,'%Y%m') as month,
                   date_format(start_time,'%Y%m%d') as day,
                   'exam'                  as flag
            from exam_record
            union
            select uid,date_format(submit_time,'%Y%m') as month,
                   date_format(submit_time,'%Y%m%d') as day,
                   'practice'             as flag
            from practice_record
            ) t2
    on t1.uid = t2.uid
        ) t
group by uid
order by act_month_total desc,act_days_2021 desc



全部评论

相关推荐

感性的干饭人在线蹲牛友:🐮 应该是在嘉定这边叭,禾赛大楼挺好看的
点赞 评论 收藏
分享
喜欢走神的孤勇者练习时长两年半:池是池,发是发,我曾池,我现黑
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务