找出部门 10 中既不是经理也不是普通员工,而且工资大于等于 2000 的员工
select * from emp e where e.deptno = 10 and e.job not in ('经理', '普通员工') and e.sal >= 2000;