oracle中exists和in的比较
exists 是Oracle sql中的一个函数。表示是否存在符合某种条件的记录。如
select * from A,B
where A.id=B.id
and exists (SELECT *
FROM A
WHERE A.type LIKE 'S%')
它和Oracle的另外一个函数IN很相似,你可以比较一下他们的用法,见下:
1 性能上的比较比如Select * from T1 where x in ( select y from T2 )
执行的过程相当于:
select *
from t1, ( select distinct y from t2 ) t2
where t1.x = t2.y;
即分别先查寻两个表,对做联合查询(本质联合查询)
相对的
select * from t1 where exists ( select null from t2 where y = x )
执行的过程相当于:
for x in ( select * from t1 )
loop
if ( exists ( select null from t2 where y = x.x )
then
OUTPUT THE RECORD
end if
end loop
表 T1 不可避免的要被完全扫描一遍
即循环外表,在逐个比较内表
分别适用在什么情况?
以子查询 ( select y from T2 )为考虑方向
如果子查询的结果集很大需要消耗很多时间,但是T1比较小执行( select null from t2 where y = x.x )非常快,那么exists就比较适合用在这里
相对应得子查询的结果集比较小的时候就应该使用in.
以后要注意凡是这样的比较问题,一般答案都不是绝对的,要分情况
如果两个表中一个较小,一个是大表,则子查询表大的用exists,子查询表小的用in:
---转载自http://blog.csdn.net/hakunamatata2008/article/details/4239831