题解 | #平均活跃天数和月活人数#
平均活跃天数和月活人数
https://www.nowcoder.com/practice/9e2fb674b58b4f60ac765b7a37dde1b9
select a.month, round(sum(a.act_day_pm_puid)/count(a.uid), 2) as avg_active_day, count(a.uid) as mau from ( select date_format(submit_time, '%Y%m') as month, uid, count(distinct substr(submit_time, 1, 10)) as act_day_pm_puid from exam_record where year(submit_time) = 2021 and submit_time is not null group by month, uid ) a group by a.month