10.获取所有非manager的员工emp_no
select emp_no
from employees
where employees.emp_no
not in(select emp_no from dept_manager)
找不在管理表上的员工emp_no,用not in