Oracle® Database PL/SQL Language Reference 11g Release 2 (11.2) Part Number E10472-05 |
|
|
View PDF |
The CONTINUE
statement exits the current iteration of a loop, either conditionally or unconditionally, and transfers control to the next iteration of either the current loop or an enclosing labeled loop.
Topics:
Syntax
continue_statement ::=
Semantics
label
A name that identifies either the current loop or an enclosing loop (see "Basic LOOP Statement").
Without label
, the CONTINUE
statement transfers control to the next iteration of the current loop. With label
, the CONTINUE
statement transfers control to the next iteration of the loop that label
identifies.
WHEN boolean_expression
Without this clause, the CONTINUE
statement exits the current iteration of the loop unconditionally. With this clause, the CONTINUE
statement exits the current iteration of the loop if and only if the value of boolean_expression
is TRUE
.
Usage
A CONTINUE
statement can appear anywhere inside a loop, but not outside a loop.
A CONTINUE
statement cannot cross a subprogram or method boundary.
If a CONTINUE
statement exits a cursor FOR
loop prematurely (for example, to exit an inner loop and transfer control to the next iteration of an outer loop), the cursor closes (in this context, CONTINUE
works like GOTO
).
Note:
As of Release 11.1,CONTINUE
is a PL/SQL keyword. If your program invokes a subprogram named CONTINUE
, you get a warning.Examples
Related Topics
In this chapter:
In other chapters: