Mega Code Archive

 
Categories / Oracle PLSQL Tutorial / PL SQL Statements
 

EXIT a FOR LOOP with exit command

SQL> SQL> set serveroutput on SQL> set echo on SQL> SQL>    BEGIN   2          FOR v_loopcounter IN 1..20 LOOP   3               IF MOD(v_loopcounter,2) = 0 THEN   4                    DBMS_OUTPUT.PUT_LINE('The AREA of the circle is ' ||v_loopcounter*v_loopcounter * mypi);   5               END IF;   6               IF v_loopcounter = 10 THEN   7                    EXIT;   8               END IF;   9         END LOOP;  10    END;  11    / The AREA of the circle is 12.56 The AREA of the circle is 50.24 The AREA of the circle is 113.04 The AREA of the circle is 200.96 The AREA of the circle is 314 PL/SQL procedure successfully completed. SQL>