描述
使用含有关键字exists查找未分配具体部门的员工的所有信息。
CREATE TABLE `employees` (
`emp_no` int(11) NOT NULL,
`birth_date` date NOT NULL,
`first_name` varchar(14) NOT NULL,
`last_name` varchar(16) NOT NULL,
`gender` char(1) NOT NULL,
`hire_date` date NOT NULL,
PRIMARY KEY (`emp_no`));
CREATE TABLE `dept_emp` (
`emp_no` int(11) NOT NULL,
`dept_no` char(4) NOT NULL,
`from_date` date NOT NULL,
`to_date` date NOT NULL,
PRIMARY KEY (`emp_no`,`dept_no`));
SQL练习题57(中等):
--使用exists
select *
from employees a
where not EXISTS
(select emp_no from dept_emp b where a.emp_no=b.emp_no);
--使用连接
select * from employees a
left join dept_emp b on a.emp_no = b.emp_no
where b.emp_no is null;
850

被折叠的 条评论
为什么被折叠?



