关于留存率的问题

留存率的解决步骤

1. 表的自关联,以用户id进行关联,通过关联的两个表得到时间间隔;
2. 求出每日用户活跃数;
3. 求出各日留存数;
count( DISTINCT ( IF ( DATEDIFF( b.dates, a.dates ) = 1, a.user_id, NULL ) ) );
自关联的两张表a,b,判断两张表的日期差。
以次日留存为例:两表的日期差为1,则该用户记为留存户,
否则不计入。
4. 计算各日用户留存率。留存率=各日留存用户数/基准日活跃用户数

```sql
select a.登陆时间,
count(distinct a.用户id)as活跃用户数,
count(distinct when 时间间隔=1 then 用户id else null end) as  次日留存数,
count(distinct when时间间隔=1 then 用户id else null end)as次日留存数/count(distinct a.用户id)as次日留存率,
count(distinct when时间间隔=3 then 用户id else null end)as三日留存数,count(distinct when时间间隔=3 then 用户id else null end)as 三日留存数/count(distinct a.用户id)as三日留存率,
from
     (select *,timestampdiff(day,a.登陆时间,b.登陆时间) as 时间间隔
     from
     (select a.用户id,a.登陆时间,b.登陆时间 from 用户行为信息表 as a
      left join 用户行为信息表 as b on a.用户id = b.用户id) as c)as d
group by a.登陆时间;

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值