题解 | #每月及截止当月的答题情况#

每月及截止当月的答题情况

https://www.nowcoder.com/practice/1ce93d5cec5c4243930fc5e8efaaca1e

select start_month,mau,month_add_uv,
max(month_add_uv) over(order by start_month) as max_month_add_uv,
sum(month_add_uv) over(order by start_month) as cum_sum_uv
from
(
    select date_format(start_time,'%Y%m') as start_month,
    count(distinct uid) as mau,
    count(case when (uid,start_time) in (select uid,min(start_time) as start_time 
                                         from exam_record
                                        group by  uid) then uid else null end) as month_add_uv
    from exam_record
    group by start_month
) tmp
order by start_month

                                    
                                    
全部评论

相关推荐

好在哪里了?我请问了?
仁者伍敌:活着的人都说好,帮我盖上棺材盖谢谢
点赞 评论 收藏
分享
下北澤大天使:你是我见过最美的牛客女孩😍
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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