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

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

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

-- 每天 日活数 新用户 占比
select dt,count(distinct uid) dau,
round(count(distinct case when min_date = dt then uid else null end)/count(distinct uid),2) uv_new_ratio
from 
(select uid,date(in_time) dt, min(date(in_time)) over (partition by uid) min_date
from tb_user_log
union all 
select uid,date(out_time) dt, min(date(in_time)) over (partition by uid) min_date
from tb_user_log) u 
group by dt

全部评论

相关推荐

11-15 19:28
已编辑
蚌埠坦克学院 硬件开发
点赞 评论 收藏
分享
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务