Oracle中goto用法

declare 
  i number; --定义变量
begin
  i := 0; --变量赋初始值
  <<repeat_loop>> --循环点  
  i := i + 1;  --循环语句
  insert into child values(i);  
  if i < 9
   then   --当x的值小于9时,就goto到repeat_loop 
     goto repeat_loop;  
  end if;
  commit;
end;

Related Posts