pl/sql 实例精解 07
这章主要讨论 oracle11g 新特性, continue, continue when 语句
continue 的作用同其他编程语言一样.
continue when condition 只是当条件成立的情况下, 才结束当前循环, continue 的作用就是结束当前循环.
另外, 循环可以嵌套使用. (嵌套使用时, 最好使用标签作为提示)
1: set serveroutput on
2:
3: declare
4: v_test number := 0;
5: begin
6: <<outer_loop>>
7: for i in reverse 1..3 loop
8: v_test := v_test + 1;
9:
10: <<inner_loop>>
11: for j in reverse 1..2 then
12: dbms_output.put_line('v_test=' || v_test);
13: end loop inner_loop;
14: end loop outer_loop;
15: end;
16: /
17: show errors;