with month_info as( select job,date,num, substr(date,1,7) as mon from resume_info), t1 as( select job, mon, sum(num) as cnt from month_info where year(date)=2025 group by job,mon), t2 as( select job, mon, sum(num) as cnt from month_info where year(date)=2026 group by job,mon) select t1.job as job, t...