> 数据库 > Oracle >

Oracle存储过程中的break和continue

break可用exit代替。
loop
...
exit when ...;
...
end loop;
continue和用自定义异常代替。
loop
begin
...
raise my_ex;
...
exception
when others then null;
end;
end loop;




(责任编辑:IT)