select job, sum(num) cnt
from resume_info
where date_format(`date`, '%Y') = '2025'
group by job
order by cnt desc;