SELECT DISTINCT job, SUM(num) over(PARTITION BY job) "cnt" FROM resume_info WHERE YEAR(DATE) = "2025" ORDER BY cnt DESC