TA的每日心情 | 奋斗 2024-10-22 14:23 |
---|
签到天数: 1007 天 连续签到: 1 天 [LV.10]测试总司令
|
下面的a表你应该有的。或者你应该做一个连续月份的临时表。流失默认是到月底的。就是当月没有登录算流失。
- select a.yf,
- count(case when substr(created_at,1,7)<=yf then id else null end) zongshu_ct,
- count(case when substr(created_at,1,7)=yf then id else null end) xinzeng_ct,
- count(case when substr(update_at,1,7)<yf then id else null end) liushi_ct
- from (
- select '2019-10' yf
- union all
- select '2019-11' yf
- union all
- select '2019-12' yf
- union all
- select '2020-01' yf
- union all
- select '2020-02' yf
- union all
- select '2020-03' yf
- ) a
- join f_user
- on 1=1
- group by a.yf
复制代码 |
|