Mega Code Archive

 
Categories / Oracle PLSQL / PL SQL
 

Call EXIT to exit a for loop

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 );   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 4 The AREA of the circle is 16 The AREA of the circle is 36 The AREA of the circle is 64 The AREA of the circle is 100 PL/SQL procedure successfully completed. SQL> SQL> SQL> --