Home Privacy Policy Feedback Link to us Site Map

Oracle/PLSQL: GOTO Statement


The GOTO statement causes the code to branch to the label after the GOTO statement.

For example:

GOTO label_name;


Then later in the code, you would place your label and code associated with that label.

Label_name: {statements}