概述
1.使用select into
begin
select dno into v_dno from tbl where xxx.
exception
when no_data_found then
--无数据
end;
2.游标fetch
open mycursor;
fetch mycursor into rec;
if mycursor%notfound then
--无数据
end if;
close mycursor;
3.游标%rowcount属性判断
open mycursor;
if mycursor%rowcount =0 then
--无数据
end if;
close mycursor;
注意:打开游标之后不fetch,就判断游标%notfound是不行的。不论有没有数据都会返回true。
转载于:https://www.cnblogs.com/luckystar2010/p/3431892.html
最后
以上就是陶醉凉面为你收集整理的Oracle判断数据是否存在(使用游标判断需要注意的问题)的全部内容,希望文章能够帮你解决Oracle判断数据是否存在(使用游标判断需要注意的问题)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复