首页 | 编程语言 | 网站建设 | 游戏天堂 | 冲浪宝典 | 网络安全 | 操作系统 | 软件时空 | 硬件指南 | 病毒相关 | IT 认证
软讯网络 > 冲浪宝典 > 网络资源 > 关于存在性的判断
【标  题】:关于存在性的判断
【关键字】:
【来  源】:http://www.cublog.cn/u/22151/showart.php?id=194309

关于存在性的判断

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


[Ref: http://blog.itpub.net/post/6/9018 ]
这种方法的问题在于:我们需要的仅仅是是否存在,而不是得到总记录数。查询记录总数付出了不必要的性能代价。

两种情况:

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;
或者:
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 ....

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

UltraEdit 使用技巧(zt):【上一篇】
数据库当前状况报告:【下一篇】
【相关文章】
没有相关文章
【随机文章】
  • Step-By-Step Installation of RAC on HP-UX
  • 内嵌或嵌入SQL和存储过程之对比
  • java类型转换与强制类型转换
  • ESFramework源码目录介绍
  • 光发射机
  • 对话框程序中处理ALT+F4(ESC)按键
  • 使用ls来查看目录内容
  • 时间的测量(转)
  • chmod ------入门的一些常识
  • 认证考试介绍之RHCE篇
  • 【相关评论】
    没有相关评论
    【发表评论】
    姓名:
    邮件:
    随机码*
    评论*
          
    |  首 页  |  版权声明  |  联系我们   |  网站地图  |
    CopyRight © 2004-2007 软讯网络 All Rigths Reserved.