#岗位+25每月简历数+26每月简历数 按25每月简历数降序job降序 #2025年 select distinct b.job ,first_year_month ,first_year_cnt ,second_year_month ,second_year_cnt from ( select distinct job ,mon first_year_month ,sum(num)over(partition by job,mon) first_year_cnt#每月简历数 from ( select job ,date_format(date,'%Y-%m') mon#新增列年+月 ,nu...