with t as( select exam_id, date_format(start_time,"%Y%m") as start_month, count(start_time) as month_cnt from exam_record group by exam_id, date_format(start_time,"%Y%m") ) select exam_id, start_month, month_cnt, sum(month_cnt...