select job_id, boss_id, company_id from (select job_id, boss_id, company_id, job_city from job_info where YEAR (post_time) >= 2021 union select job_id, boss_id, company_id, job_city from job_info where job_city like '上海%' ) t order by jo...