exists 和 not exists 的用法
Posted 小琪子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了exists 和 not exists 的用法相关的知识,希望对你有一定的参考价值。
1 我们总是习惯了用in 和 not in 但是这样有时会会很影响性能,下面来看看用exists 和 not exists 的使用方法
首先新建两张表 a 和 b
select a.* from a where exists (select * from b where a.value = b.value)
select a.* from a where exists (select * from b where a.value = b.value)
我们看到 只要exists 里面 返回有数据 则 返回真 not exists 里面只要有数据就返回 false,只要记住 exists 里面有数据就为真就行,这样比较不会混淆
以上是关于exists 和 not exists 的用法的主要内容,如果未能解决你的问题,请参考以下文章
oracle_not exists和not in的用法和区别