题解 | #统计活跃间隔对用户分级结果#

统计活跃间隔对用户分级结果

https://www.nowcoder.com/practice/6765b4a4f260455bae513a60b6eed0af

with 
t1 as (select DISTINCT uid,max(date(in_time)) as in_dt,max(date(out_time)) as out_dt from tb_user_log group by uid),
t2 as ( select uid,min(date(in_time)) as early_date from tb_user_log group by uid),
t3 as (select max(date(out_time)) as max_date from tb_user_log),

tmp as (
select 
avg(case when DATEDIFF(t3.max_date,t1.out_dt)<=6 and t2.early_date<t1.out_dt then 1 else 0 end ) as a,
avg(case when DATEDIFF(t3.max_date,t1.out_dt)<=6 and t2.early_date>=t1.out_dt then 1 else 0 end ) as b,
avg(case when DATEDIFF(t3.max_date,t1.out_dt)>6 and DATEDIFF(t3.max_date,t1.in_dt)<30 then 1 else 0 end ) as c,
avg(case when  DATEDIFF(t3.max_date,t1.out_dt)>=30 then 1 else 0 end ) as d
from 
 t1 
left join t2 on t1.uid=t2.uid 
left join t3 on 1
)

select '忠实用户',round(a,2) from tmp
union all 
select '新晋用户',round(b,2) from tmp
union all 
select '沉睡用户',round(c,2) from tmp
union all 
select '流失用户',round(d,2) from tmp;

全部评论

相关推荐

10-18 13:01
已编辑
西安理工大学 C++
小米内推大使:建议技能还是放上面吧,hr和技术面试官第一眼想看的应该是技能点和他们岗位是否匹配
点赞 评论 收藏
分享
11-09 11:01
济南大学 Java
Java抽象带篮子:外卖项目真得美化一下,可以看看我的详细的外卖话术帖子
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务