当前位置:Gxlcms > mysql > Oracle存储过程中的break和continue

Oracle存储过程中的break和continue

时间:2021-07-01 10:21:17 帮助过:323人阅读

无详细内容 无 break可用exit代替。loop...exit when ...;...end loop;continue和用自定义异常代替。loopbegin...raise my_ex;...exceptionwhen others then null;end;end loop;

<无详细内容> <无>
break可用exit代替。
loop
...
exit when ...;
...
end loop;
continue和用自定义异常代替。
loop
begin
...
raise my_ex;
...
exception
when others then null;
end;
end loop; 

人气教程排行