Sunday, January 11, 2009

GOTO Statement

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}

No comments:

Post a Comment