select DATE_FORMAT(submit_time,'%Y%m') submit_month ,count(uid) month_q_cnt ,round(count(uid)/ max(DAY(LAST_DAY(submit_time))),3) avg_day_q_cnt from practice_record where DATE_FORMAT(submit_time,'%Y') = '2021' and score is not null group by submit_month union all select '2021汇总' as submit_month,coun...