子查询中空值问题

现在要查询 不是经理的员工姓名

select  e.ename from emp e
where e.empno not in
     (select distinct mgr from emp);

结果为空行
出现这种情况的原因有两个:
- - -子查询中返回值中包含有空值;
- - -NOT IN操作符对空值不忽略。
NOT IN操作符相当于<> ALL,即除了列表值的所有值,就包括了空值NULL,结果即为空。

select distinct mgr from emp 

执行结果有空值

解决方法: 令子查询中不存在Null值:

select  e.ename from emp e
where e.empno not in (
     select distinct mgr from emp where not mgr is null);

你可能感兴趣的:(orcle)