select
    job_id,
    company_id
from
    job_info
where
    job_city='北京'
union all

select
    job_id,
    company_id
from
    job_info
where
    salary>100000;