当前位置:Gxlcms > 数据库问题 > SQL-57 使用含有关键字exists查找未分配具体部门的员工的所有信息。

SQL-57 使用含有关键字exists查找未分配具体部门的员工的所有信息。

时间:2021-07-01 10:21:17 帮助过:6人阅读

题目描述

使用含有关键字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`));
输出格式:
emp_nobirth_datefirst_namelast_namegenderhire_date
10011 1953-11-07 Mary Sluis F 1990-01-22
SQL:
select * 
from employees
where not exists(select emp_no from dept_emp where dept_emp.emp_no=employees.emp_no)

  查看一下 网摘中 exists 的用法

SQL-57 使用含有关键字exists查找未分配具体部门的员工的所有信息。

标签:HERE   关键字   ima   pac   add   create   有关   var   employee   

人气教程排行