首页 > 试题广场 >

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

[编程题]使用含有关键字exists查找未分配具体部门的员工的所有信息
  • 热度指数:119015 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32M,其他语言64M
  • 算法知识视频讲解
使用含有关键字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_no birth_date first_name last_name gender hire_date
10011 1953-11-07 Mary Sluis F 1990-01-22
示例1

输入

drop table if exists employees;
drop table if exists dept_emp;
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`));
INSERT INTO employees VALUES(10001,'1953-09-02','Georgi','Facello','M','1986-06-26');
INSERT INTO employees VALUES(10002,'1964-06-02','Bezalel','Simmel','F','1985-11-21');
INSERT INTO employees VALUES(10003,'1959-12-03','Parto','Bamford','M','1986-08-28');
INSERT INTO employees VALUES(10004,'1954-05-01','Chirstian','Koblick','M','1986-12-01');
INSERT INTO employees VALUES(10005,'1955-01-21','Kyoichi','Maliniak','M','1989-09-12');
INSERT INTO employees VALUES(10006,'1953-04-20','Anneke','Preusig','F','1989-06-02');
INSERT INTO employees VALUES(10007,'1957-05-23','Tzvetan','Zielinski','F','1989-02-10');
INSERT INTO employees VALUES(10008,'1958-02-19','Saniya','Kalloufi','M','1994-09-15');
INSERT INTO employees VALUES(10009,'1952-04-19','Sumant','Peac','F','1985-02-18');
INSERT INTO employees VALUES(10010,'1963-06-01','Duangkaew','Piveteau','F','1989-08-24');
INSERT INTO employees VALUES(10011,'1953-11-07','Mary','Sluis','F','1990-01-22');
INSERT INTO dept_emp VALUES(10001,'d001','1986-06-26','9999-01-01');
INSERT INTO dept_emp VALUES(10002,'d001','1996-08-03','9999-01-01');
INSERT INTO dept_emp VALUES(10003,'d004','1995-12-03','9999-01-01');
INSERT INTO dept_emp VALUES(10004,'d004','1986-12-01','9999-01-01');
INSERT INTO dept_emp VALUES(10005,'d003','1989-09-12','9999-01-01');
INSERT INTO dept_emp VALUES(10006,'d002','1990-08-05','9999-01-01');
INSERT INTO dept_emp VALUES(10007,'d005','1989-02-10','9999-01-01');
INSERT INTO dept_emp VALUES(10008,'d005','1998-03-11','2000-07-31');
INSERT INTO dept_emp VALUES(10009,'d006','1985-02-18','9999-01-01');
INSERT INTO dept_emp VALUES(10010,'d005','1996-11-24','2000-06-26');
INSERT INTO dept_emp VALUES(10010,'d006','2000-06-26','9999-01-01');

输出

10011|1953-11-07|Mary|Sluis|F|1990-01-22
select
    *
from
    employees e
where
    not exists (
        select
            1
        from
            dept_emp d
        where
            e.emp_no = d.emp_no
    )

发表于 2025-01-07 11:21:10 回复(0)
select * from employees
where not exists
(select employees.emp_no
from
employees join dept_emp on employees.emp_no=dept_emp.emp_no)
这样为什么不行?语法没有问题但是不出结果
发表于 2024-11-27 20:49:58 回复(0)
SELECT
    *
FROM
    employees 
WHERE
    NOT exists ( SELECT emp_no FROM dept_emp  de where emp_no = employees.emp_no )
    


一开始是不太理解这个子查询里的逻辑的,先用了两表连接查询 行不通,
正常来说 子查询里的语句应该是可以运行出结果的,但是对于dept_no.emp_no=employees.emp_no是运行不出来的 因为子查询语句中没有标注出来employees的表,所以是报错的,虽然这个逻辑不太理解 但是加上exists这个就是理解为如果子查询返回了数据,那么exists表达式的结果就为true,如果子查询不返回任何行,则exists结果就为false
题意肯定是要返回有效数据的,但是子查询又没有返回任何数据,所以针对子查询的结果看exists结果是为false的,那在exists前面加个not 就可以将结果反过来变为true了。

但是哪位大神能再给我详细解释一下子查询里的语句
发表于 2024-09-05 11:37:27 回复(0)
select * from employees a
where not exists (select emp_no from dept_emp where emp_no=a.emp_no);

发表于 2024-02-24 16:42:10 回复(0)
# 使用含有关键字exists查找未分配具体部门的员工的所有信息。

# 注意:一般使用left join 解决,很少使用:exists

select 
 t1.emp_no
,t1.birth_date
,t1.first_name
,t1.last_name
,t1.gender
,t1.hire_date
from employees t1 
where not exists(
    select 1 from dept_emp t2
    where t1.emp_no = t2.emp_no
)
order by 1;

发表于 2023-09-12 17:00:10 回复(0)
select emp_no,birth_date,first_name,last_name,gender,hire_date
from employees e
where not exists (
    select emp_no 
    from dept_emp 
    where emp_no = e.emp_no
)

发表于 2022-12-26 15:58:57 回复(0)
# 方法一:NOT EXIST
SELECT * 
FROM employees 
WHERE NOT EXISTS (     # 出现不同的编号,查询结果为真,返回数据
                       # 这里其实可以直接翻译为 WHERE employees. emp_no NOT IN (SELECT …… WHERE dept_emp.emp_no IS NULL)
    SELECT emp_no 
    FROM dept_emp 
    WHERE dept_emp.emp_no = employees.emp_no  # 挑选出相同的编号
                 )
# where exists(有查询结果,为真,返回数据)
# where not exists(没有查询结果,为真,返回数据)

# 方法二:EXIST/NOT EXIST的效果和下面这种写法是一样的,只是说数据大了之后,用exist查询效率更高
SELECT * 
FROM employees
LEFT JOIN dept_emp
    ON employees.emp_no = dept_no.emp_no
WHERE dept_no.emp is null
发表于 2022-11-03 15:23:55 回复(0)
select * from employees e
where not exists(
    select emp_no from dept_emp d where d.emp_no = e.emp_no
 );

在mysql中,exists用于检查子查询是否至少会返回一行数据,该子查询实际上并不返回任何数据,而是返回true或false,语法为“SELECT 字段 FROM table WHERE EXISTS (subquery);”。
发表于 2022-10-26 23:57:30 回复(0)
select *
from employees e 
where not exists (select dept_no from dept_emp d where d.emp_no = e.emp_no)
发表于 2022-09-15 02:51:21 回复(0)
问一下大佬们,这种写法为什么不对呀?
select e.*
from employees e 
where not exists (
    select d.emp_no
    from dept_emp d,employees f
    where d.emp_no = f.emp_no
)

发表于 2022-08-29 14:31:53 回复(0)
内层要用where筛选将两个表连接起来,不能用on或using
select * from employees e
where not exists (select emp_no from dept_emp d where d.emp_no=e.emp_no)


发表于 2022-08-17 17:27:30 回复(0)
select * from employees as a
where not exists 
    (select emp_no from dept_emp as b where a.emp_no = b.emp_no)
;

发表于 2022-07-15 10:40:45 回复(0)
select *
from employees
where not exists (
    select emp_no
    from dept_emp
    where employees.emp_no = dept_emp.emp_no
);
发表于 2022-06-07 09:47:23 回复(0)
select
    *
from
    employees
where not exists
    (
    select
        emp_no
    from
        dept_emp
    where
        dept_emp.emp_no = employees.emp_no
    );

# exists会从外表中逐条检索记录,当某条记录能够让exists后跟查询有结果时,则输出该记录。

发表于 2022-04-26 21:04:03 回复(0)
select e.*
from employees e left join dept_emp d on e.emp_no=d.emp_no
where  exists (select 1)and dept_no is  null
取巧了 不要学我...
发表于 2022-04-23 15:16:51 回复(0)
1.exists介绍
EXISTS (子查询) :如果子查询包含任何行,则EXISTS运算符返回true。 否则它返回false。
作用:用exists代替in是SQL性能优化的一个手段,使用exists能提高查询性能

用法举例:部门编号小于30的所有员工信息

解决方案一:select * from emp where dept in (select deptno from dept where
deptno<30);
解决方案二:select * from emp e where exists(select * from dept
d where deptno<30 and d.deptno = e.deptno);
————————————————
版权声明:本文为CSDN博主「不平衡的叉叉树」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/NoviceZ/article/details/118404272
执行步骤:
1.首先执行外查询 select * from emp e,然后取出第一行数据,将数据中的部门编号传给内查询;
2.内查询执行select * from dept d where deptno <30 and d.deptno = e.deptno ,此时e.deptno就为外查询传来的部门编号,比较一下是否满足where后面的条件,若满足,则返回true,否则返回false;比如传来的是30,则不满足deptno <30 and d.deptno = 30,返回false;
3.内查询返回true,则该行数据保留,作为结果显示;反之,返回false,则不作结果显示;
4.逐行查询,看内查询是否查到数据,是否保留作结果显示(类似于Java里的for循环);
发表于 2022-04-20 15:52:22 回复(0)
    select *
    from employees a
    where not exists(
        select 1 from dept_emp b
        where a.emp_no=b.emp_no
    )

发表于 2022-04-17 20:10:49 回复(0)
SELECT *
FROM employees
WHERE not exists(
                SELECT dept_no
                FROM dept_emp 
                WHERE dept_emp.emp_no=employees.emp_no)

发表于 2022-04-07 12:08:32 回复(0)
select *
from employees as em
where exists (select * from
                      (select e.emp_no
                       from employees as e
                       left join dept_emp as de on e.emp_no = de.emp_no
                       where dept_no is null) as a
                       where em.emp_no = a.emp_no)

发表于 2022-03-12 16:24:21 回复(0)