PL/SQL - (Loop|Iteration)
About
This page is about iteration in PL/SQL.
Loop
While
WHILE condition
LOOP
{...statements...}
END LOOP;
Continue
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.