Oracle存储过程中跳出循环的写法

Posted 左正

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle存储过程中跳出循环的写法相关的知识,希望对你有一定的参考价值。

记录exit和return的用法 
exit用来跳出循环 
loop 
IF V_KBP IS NULL THEN 
          EXIT; 
   END IF; 
end loop; 

return跳出存储过程 
loop 
IF V_KBP IS NULL THEN 
        return; 
   END IF; 
end loop; 

跳出loop 一次循环 
oracle 11g已提供continue; 
oracle 10g及以下,使用goto来替代,例如 

SQL> set serveroutput on; 
SQL> declare 
  2  begin 
  3    for i in 1..10 loop 
  4      if mod(i,2)=0 then 
  5        goto next; 
  6      end if; 
  7      dbms_output.put_line(i); 
  8      <<next>> 
  9      null; 
10    end loop; 
11  end; 
12  / 
注意:<<next>>标签后的null;语句不可少,因为goto标签后必须紧接着一个执行语句

以上是关于Oracle存储过程中跳出循环的写法的主要内容,如果未能解决你的问题,请参考以下文章

oracle 跳出一个循环的问题

mssql 存储过程中循环如何写,在循环中用啥语句跳出循环呢,在线等

sql 存储过程输入参数个数不定的写法

oracle中的存储过程怎么写

oracle存储过程中循环调用存储过程

oracle存储过程中循环for in是如何使用的