select concat(substring_index(submit_time,'-',1), substring_index(substring_index(submit_time,'-',-2),'-',1)) month, ROUND(count(submit_time)/count(distinct uid),2) avg_active_days, count(distinct uid) mau from exam_record where year(submit_time)='2021' and submit_time is not null group by month