select job,sum(num) count
from resume_info
where date>'2025-01-01' and date<'2025-12-31'
group by job
order by sum(num) desc