oracle 存储过程 判断记录是否存在【转】

很多人喜欢用这样的方法来判断是否存在记录:
       select count(*) into t_count from t where condition;
       if t_count> 0 then ....

这种方法的问题在于:我们需要的仅仅是是否存在,而不是得到总记录数。查询记录总数付出了不必要的性能代价。

两种情况:
       1. 如果判断是否存在记录后, 要查询记录中的某些列的信息,或者是决定要对表进行insert/update操作,典型的操作为:
       a. 

select count(*) into t_count from t where condition;
       if t_count> 0 then 
              select cols into t_cols from t where condition;
       else
            otherstatement;
       end; 
      

b.

select count(*) into t_count from t where condition;
       if t_count> 0 then 
                    update ...;
        else
                    insert ...;
        end;

这两种操作,都可以采用直接操作,然后进行例外处理的方式,根本就不进行这个存在性判断!

改写后的a.

begin
              select cols into t_cols from t where condition;
             exception 
               when no_data_found then begin 
                        statement-block2;
             end;
               when others then begin
                       raise error...
                end;
      end;


改写后的b.

update t set ... where condition;
           IF SQL%NOTFOUND THEN
                 insert into t ...
           END IF;                   --- 判断是更新MPD重复检间隔还是插入时,我采用了这个方法判断
       或者:

begin
           insert into t ...
           exception 
                 when DUP_VAL_ON_INDEX then begin 
                       update t set ...
           end;
        end;


这两种方法使用哪一种,取决于你认为哪种情况出现的可能更高。

2. 如果判断是否存在记录来决定是否进行其它操作, 如下例

select count(*) into t_count from t where condition;
       if t_count> 0 then ....

则可以改成这样的语句:

select count(*) into t_count from dual where exists(select 1 from t where condition);
        if t_count> 0 then ....


使用改写后的语句,多数情形下应该会有比原来的语句更好的性能。(当然, 如果你要查询的表本身是一个单行或只有几行记录的表, 直接查询应该会更好)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值