限定条件:

  • 在2025年内投递简历的岗位和数量
  • 并且按数量降序排序
select job , sum(num)cnt
from resume_info
where date < '2026-01-01'and date > '2024-12-31'
group by job
order by cnt desc;