with t as ( select id, job, DATE_FORMAT (date, '%Y-%m') as date, num from resume_info ), y25 as ( select job, date as first_year_mon, CAST(RIGHT(date, 2) AS UNSIGNED) as month, sum(num) as first_year_cnt from t WHERE date LIKE '2025-%' group by job, first_year_mon order by first_year_mon desc, job d...