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

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

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

select t1.dt,count(distinct t1.uid) as dau,
round(count(t2.uid)/count(distinct t1.uid),2) as uv_new_ratio
from
    (select uid,date(in_time) as dt
    from tb_user_log
    union
    select uid,date(out_time) as dt
    from tb_user_log
     ) as t1
left join 
    (select uid,min(date(in_time)) as min_time
     from tb_user_log
     group by uid
    )as t2
on t1.uid=t2.uid
and t1.dt=t2.min_time
group by t1.dt
order by t1.dt
全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

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