PL/SQL Exception

PL/SQL Exception

PL/SQL Interview Questions

PL/SQL Interview Questions and Answers


PL/SQL Continue Statement

The PL/SQL Continue statement is used within looping structures to skip the rest of the current loop iteration and continue execution at the condition evaluation and then the beginning of the next iteration.

PL/SQL Continue Statement Syntax

To skip the rest of the current loop iteration and continue execution at the condition evaluation and then the beginning of the next iteration, use the following syntax:

Syntax

PL/SQL Continue Statement example

The following PL/SQL show how to skip the rest of the current loop iteration and continue execution at the condition evaluation and then the beginning of the next iteration:

Example