SQL>SQL> -- Using EXIT with a simple LOOP.SQL> BEGIN 2 LOOP 3 NULL; 4 EXIT; 5 END LOOP; 6 END; 7 /PL/SQL procedure successfully completed.SQL>