select job,left(date,7) mon,sum(num) cnt
from resume_info
where year(date)='2025'
group by job,month(date)
order by mon desc,cnt desc;