CONTINUE
Syntax
The CONTINUE statement finishes the nearest containing loop statement by resuming execution at the next iteration of the loop.CONTINUE;
Example
CONTINUE within a FOR loop.
FOR loop_counter in 1..10 LOOP -- Continue resumes here.
IF some_value != 5 THEN
CONTINUE; -- skip the rest of this code…
END IF;
---- Perform some other tasks…
END LOOP;