留存率的解决步骤
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.登陆时间;