goto plsql
Pl sql goto statement: The pl sql goto statement provides an unconditional jump from the GOTO to a labeled statement in the same subprogram. A label can be declare with the > syntax. pl sql goto statement syntax: GOTO label_name; //Other statements <<label_name>> Statement;GOTO label_name; //Other statements <<label_name>> Statement; Pl sql goto statement example: DECLARE … Read more