Mega Code Archive

 
Categories / Oracle PLSQL Tutorial / PL SQL Statements
 

Using Labels and EXIT Statements with Loops

You can use labels within loops to identify a loop. The Syntax for Using Labels with Loops <<label_name1>>   LOOP (FOR, WHILE, LOOP)        <<label_name2>>        LOOP (FOR, WHILE, LOOP)             ...        END LOOP <<label_name2>>   END LOOP <<label_name1>>