with temp as (select exam_id , date_format(start_time, '%Y%m') start_month , count(1) as month_cnt from exam_record group by exam_id, start_month) select exam_id , start_month , month_cnt , sum(month...