select job,DATE_FORMAT(date,'%Y-%m') mon,sum(num) cnt
from resume_info
where year(date) = '2025'
group by job,mon
ORDER BY mon desc,cnt DESC