此题涉及日期处理,使用date_format转换日期格式,%Y为四位数年份,%y为两位数年份,%m为1-12月,%M为月份英文名称查询2025年的数据,使用like '2025%'即可分组需要对job,mon关联分组,即不同组合为一组通过月份,cnt排序,月份优先select job,date_format(date,'%Y-%m') as mon,sum(num) as cntfrom resume_infowhere date like '2025%'group by job,monorder by mon desc,cnt desc