select t1.job, t1.first_year_mon, t1.first_year_cnt, t2.second_year_mon, t2.second_year_cnt from ( -- 2025年每月总数 select job, substr(date,1,7) first_year_mon, sum(num) first_year_cnt from resume_info where substr(date,1,4) = '2025' group ...