Oracle中GOTO的用法
Oracle中GOTO的用法
Oracle中没有continue关键字,在loop中可以用goto语句实现同样的效果。
[sql]
create or replace procedure dd is
i pls_integer;
begin
i:=0;
loop
<<top>>
i:=i+1;
if i>10 then
exit;
end if;
if i>5 then
goto top;
end if;
dbms_output.put_line(i);
end loop;
end;
注意:
1.goto label_name,设置标签的语法如下:
<<label_name>>
可以为循环设置标签
2. <<label_name>> 后面不能直接跟EXCEPTION这种关键字类的语句,要用NULL把标签跟关键字隔开。类似的关键字还有END LOOP之类的,等等。