select t1.job, t1.first_year_mon, t1.first_year_cnt, t2.second_year_mon, t2.second_year_cnt from (select job, date_format(date,'20%y-%m') as first_year_mon, sum(num) as first_year_cnt from resume_info where year(date) = '2025' group by job, month(date) order by first_year_mon desc,job desc) as t1 l...