题解 | #每天的日活数及新用户占比#

每天的日活数及新用户占比

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

with active as (
    select 
        uid,
        date(in_time) as dt,
        min(date(in_time))over(partition by uid) as new_d
    from 
        tb_user_log
    union
    select 
        uid,
        date(out_time) as dt,
        min(date(in_time))over(partition by uid) as new_d
    from 
        tb_user_log
)

select 
    dt,
    count(distinct uid) as dau,
    round(sum(case when dt = new_d then 1 else 0 end)/count(distinct uid),2) as uv_new_ratio
from active 
group by dt
order by dt

全部评论

相关推荐

2024-12-06 10:46
已编辑
上海大学 C#工程师
LHight:兄弟去偷配方回来
点赞 评论 收藏
分享
评论
点赞
1
分享

创作者周榜

更多
牛客网
牛客企业服务