In与Exist的区别

In       ------ 遍历

Exists ------- 检索到满足条件即退出

Not Exists --------检索到不满足条件即退出

 

本质区别:

Exists 由于Exist属于外驱动,故会利用索引来检索数据

In 则属于内驱动 故不能利用索引检索数据

其中,In和Not In类似全表扫描,效率低,一般用 Exist和NotExist代替其用法。

使用环境:

*Exists 使用外连接查询时用到。

*In    使用内连接查询时用到。

e.g.:

In 的用法:

1Select Top 10 ExpoName,ExpoClassID
2From tb_Expo
3Where ExpoClassID in (Select Classid From tb_Expo_Class Where ParentID=0)

其中,先执行 Select Classid From tb_Expo_Class Where ParentID=0

等价于:

1Select Top 10 a.ExpoName From tb_Expo a,
2(select Classid from tb_expo_class where parentid=0) b
3Where a.ExpoClassID= b.ClassID

而Exist不同:

1select top 10 ExpoName,ExpoClassID from tb_Expo e
2where Exists (select 0 from tb_expo_class where parentid=0)

其执行类似于下面的sql: 

01set   serveroutput  on;
02declare
03        l_count   integer;
04begin
05        for tb_Expo  in (Select   ExpoName,ExpoClassID   From  tb_Expo)   loop
06                Select count(*) into l_count From tb_Expo_Class
07                where parentid = 0
08 
09                if l_count != 0 then
10                  dbms_output.put_line(e.ExpoName);
11                end if;
12 
13        end loop;
14end

在查询数据量大的时候就会体现出效率来。

当然,也不能说Exist就比In好。

如果

Select 0 from tb_expo_class where parentid=0

查询出来的数据量很少的话,还是 In 效率更高些。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值