oracle exist 语句
Posted 看,那条狗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle exist 语句相关的知识,希望对你有一定的参考价值。
EXISTS里的子查询结果集非空,EXISTS()子句的值就是true。
EXISTS里的子查询结果集为空,EXISTS()子句的值就是false。
NOT EXISTS里的子查询结果为非空,NOT EXISTS()字句的值是false
NOT EXISTS里的子查询结果为为空,NOT EXISTS()字句的值是true
例如:
select * from emp where not exists (select * from emp a where a.empno = 1131001 );
能查到结果集
select * from emp where exists (select * from emp a where a.empno = 11001 );
能查到结果集
结论 not exitst 子句为空 能查询到结果集 等价于 exist 子句非空
转自:http://yangzhonglei.iteye.com/blog/699673
感谢分享
以上是关于oracle exist 语句的主要内容,如果未能解决你的问题,请参考以下文章
oracle中的exists 和not exists 用法详解
oracle insert if not exists 语句
oracle_not exists和not in的用法和区别