当前位置: > 数据库 > Oracle >

Oracle存储过程中的break和continue

时间:2016-05-26 14:02来源:linux.it.net.cn 作者:IT
break可用exit代替。
loop
...
exit when ...;
...
end loop;
continue和用自定义异常代替。
loop
begin
...
raise my_ex;
...
exception
when others then null;
end;
end loop;




(责任编辑:IT)
------分隔线----------------------------