Popular Tutorials
HTML
View allJavaScript
View allGOTO in PL/SQL
In PL/SQL, GOTO statement makes you able to get an unconditional jump from the GOTO to a specific executable statement label in the same subprogram of the PL/SQL block.
Here the label declaration which contains the label_name encapsulated within the << >> symbol and must be followed by at least one statement to execute.
Syntax of GOTO: GOTO label_name;
Example of GOTO in loop
After executing this , the output is
Let's learn procedures in PL/SQL
Share this page on :
© 2022 AnalyzeCode.com All rights reserved.