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)
break可用exit代替。 loop ... exit when ...; ... end loop; continue和用自定义异常代替。 loop begin ... raise my_ex; ... exception when others then null; end; end loop; (责任编辑:IT) |