输入banner图图片脚本导航/分类

oracle 10g不支持 continue解决方法

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