oracle中的exists 和not exists 用法
有两个简单例子,以说明 “exists”和“in”的效率问题1.1) select * from T1 where exists(select 1 from T2 where T1.a=T2.a) ;
2.
3. T1数据量小而T2数据量非常大时,T1>T2 时,2) 的查询效率高。 exists 用法: 请注意 1)句中的有颜色字体的部分 ,理解其含义; 其中 “select 1 from T2 where T1.a=T2.a”相当于一个关联表查询,相当于“select 1 fro
原创
2010-11-15 00:30:00 ·
881 阅读 ·
0 评论