当前位置:Gxlcms > 数据库问题 > oracle 10g不支持 continue解决方法

oracle 10g不支持 continue解决方法

时间:2021-07-01 10:21:17 帮助过:42人阅读

i IN 1..50 LOOP IF done THEN GOTO end_loop; END IF; <<end_loop>> -- not allowed unless an executable statement follows NULL; -- add NULL statement to avoid error END LOOP; -- raises an error without the previous NULL END;

11g增加continue关键字用法如下

DECLARE
   done  BOOLEAN;
BEGIN
   FOR i IN 1..50 LOOP
      IF done THEN
        continue;
      END IF;
   END LOOP;  
END;

参考一
参考二
continue方法

版权声明:本文为博主原创文章,未经博主允许不得转载。

oracle 10g不支持 continue解决方法

标签:oracle

人气教程排行