The PL/SQL Continue statement
Introduced in Oracle Database 11.1 The PL/SQL CONTINUE statement allows you to skip the current loop iteration. It can be used conditionally and unconditionally. Unconditional Example BEGIN FOR i IN 1 .. 10 LOOP IF i = 2 THEN CONTINUE; END IF; DBMS_OUTPUT.PUT(i || ‘, ‘); END LOOP; DBMS_OUTPUT.NEW_LINE; END; In the example above, there is […]
You must be logged in to post a comment.