Loading

oracle中的exists 和not exists 用法详解

http://blog.sina.com.cn/s/blog_601d1ce30100cyrb.html

有两个简单例子,以说明 “exists”和“in”的效率问题

1) select * from T1 where exists(select 1 from T2 where T1.a=T2.a) ;

    T1数据量小而T2数据量非常大时,T1<<T2 时,1) 的查询效率高。

2) select * from T1 where T1.a in (select T2.a from T2) ;

     T1数据量非常大而T2数据量小时,T1>>T2 时,2) 的查询效率高。

posted @ 2015-07-24 10:26  stono  阅读(388)  评论(0编辑  收藏  举报