找出部门 10 中的 经理 和部门 20 中的 普通员工
select * from emp e where (e.deptno = 10 and e.job = '经理') or (e.deptno = 20 and e.job = '普通员工');