首页 > 代码库 > exists 和 not exists 的用法
exists 和 not exists 的用法
1 我们总是习惯了用in 和 not in 但是这样有时会会很影响性能,下面来看看用exists 和 not exists 的使用方法
首先新建两张表 a 和 b
select a.* from a where exists (select * from b where a.value = http://www.mamicode.com/b.value)
select a.* from a where exists (select * from b where a.value = http://www.mamicode.com/b.value)
我们看到 只要exists 里面 返回有数据 则 返回真 not exists 里面只要有数据就返回 false,只要记住 exists 里面有数据就为真就行,这样比较不会混淆
exists 和 not exists 的用法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。