数据库查询-关于exists的使用

Posted morningdaylight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库查询-关于exists的使用相关的知识,希望对你有一定的参考价值。

索引使用

1)select * from A where id in(select id from B)   -->效率低,用到了A表上id列的索引

2)select * from A where exists(select id from B where id=A.id) -->效率高,用到了B表上id列的索引

3)select * from B where id in(select id from A)   -->效率高,用到了B表上id列的索引

4)select * from B where exists(select id from A where id=B.id) -->效率低,用到了A表上id列的索引

 

select a1 from a where a1 not EXISTS(select 1 FROM B WHERE a.a1=b.a1)

select a1 from a where a1 not in(select a1 FROM B WHERE a.a1=b.a1)

 

select * from t
where exists(select 1 from t1 where t.no=t1.no and t1.name=‘211‘)
and exists(select 1 from t2 where t.no=t2.no and t2.name=‘211‘)

与下面的查询结果一样
select no from t1 where t1.name=‘211‘
interact
select no from t2 where t2.name=‘211‘

union 并集操作,不包括重复行
union all 并集操作,包括重复行
intersect 交集,不包括重复行
minus 差操作,不包括重复行









以上是关于数据库查询-关于exists的使用的主要内容,如果未能解决你的问题,请参考以下文章

postgresql关于in和exists使用

SQL关于IN和EXISTS的用法和区别的比较

关于查询语句中的in和exists的区别

关于exists 的使用

关于T-SQL中exists或者not exists子查询的“伪优化”的做法

关于 WHERE EXISTS(...) 中子查询的问题