题解 |#SQL57 使用含有关键字exists查找未分配具体部门的员工的所有信息#
使用含有关键字exists查找未分配具体部门的员工的所有信息。
http://www.nowcoder.com/practice/c39cbfbd111a4d92b221acec1c7c1484
除了掌握exists的语法,还要注意相关子查询
select * from employees where exists ( select t1.emp_no from employees t1 left join dept_emp t2 on t1.emp_no=t2.emp_no where t2.dept_no is null and t1.emp_no = employees.emp_no)