Why 'goto' statement should be minimum used in PL/SQL programme?
Answers
Answered by
0
Answer:
A GOTO statement cannot branch from an outer block into a sub-block (i.e., an inner BEGIN-END block). A GOTO statement cannot branch out of a subprogram. To end a subprogram early, either use the RETURN statement or have GOTO branch to a place right before the end of the subprogram.
Similar questions