题解 | #2021年11月每天新用户的次日留存率#

2021年11月每天新用户的次日留存率

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

select t5.dt,round(if(t3.cnt is null,0,t3.cnt)/t5.cnt,2) rate
from
(
    select t2.dt,count(*) cnt
    from
    (
        select uid,date(in_time) dt
        from tb_user_log
        where date_format(in_time,'%Y-%m') = '2021-11'
        union 
        select uid,date(out_time) dt
        from tb_user_log
        where date_format(out_time,'%Y-%m') = '2021-11'
    )t1
    join
    (
        select uid,date(min(in_time)) dt
        from tb_user_log
        group by uid
    )t2
    on t1.uid = t2.uid
    where datediff(t1.dt,t2.dt) = 1
    group by t2.dt
)t3
right join
(
    select dt,count(*) cnt
    from
    (
    select uid,date(min(in_time)) dt
    from tb_user_log
    group by uid
    )t4
    group by dt
)t5
on t3.dt = t5.dt
where date_format(t5.dt,'%Y-%m') = '2021-11'
order by t5.dt;

全部评论

相关推荐

有没有经济学家能告诉我,三年后中国的就业市场会不会好转?我在校招中拿到了一份9k+的offer,还是行业的龙头企业,心里其实不想再考研了。但又总是担心,万一读研后薪资更高,我会不会后悔呢?
Fyhyuky:三年后肯定不会啊,只会比现在更烂,你自己看看现在有没有什么增长点,电车都是国家补贴兜底才发展出来的,已经比较违背市场自然规律了,互联网更不用说了,国家强力打压,传统制造业转型失败,现在苟延残喘中
点赞 评论 收藏
分享
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务