Rumah > Artikel > pangkalan data > Oracle存储过程中的break和continue
无详细内容 无 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;