0
我有一項任務,可以從我們的表中找到唯一的用戶來處理日子。連續獲取唯一身份用戶
我想要得到的是
select count(distinct(userid)) from session_tab where
date(session) = '2016-01-15 00:00:00'
union all
select count(distinct(userid)) from session_tab where
date(session in ('2016-01-15 00:00:00','2016-01-16 00:00:00')
union all
select count(distinct(userid)) from session_tab where
date(session in ('2016-01-15 00:00:00','2016-01-16 00:00:00','2016-01-16 00:00:00')
等等...未來30天。
能有人請讓我知道如何才能實現這一目標