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

相关文章:

  • 2021-06-27
  • 2021-11-24
  • 2021-05-23
  • 2021-11-14
  • 2022-12-23
猜你喜欢
  • 2021-08-31
  • 2021-08-29
  • 2022-12-23
  • 2021-11-10
  • 2022-02-25
  • 2021-12-20
  • 2022-02-26
相关资源
相似解决方案