SQL存储过程中 循环判断变量值+游标问题
发布网友
发布时间:2022-04-08 03:22
我来回答
共3个回答
热心网友
时间:2022-04-08 04:52
写在打开游标的后头:
if state = flase then
raise_application_error(-20010,'state值为false,中断执行');
end if;
后面再接正常的处理过程,这样就OK
热心网友
时间:2022-04-08 06:10
declare Curs cursor local for
select state from tab
open Curs
fetch Curs into @state
while(@@fetch_status = 0)
begin
if @state=true
begin
end
else
continue
fetch Curs into @state
end
close Curs
deallocate Curs
热心网友
时间:2022-04-08 07:44
if (select count(*) from 表名 where state=false) > 0
...
end