While loop with complex conditions : While Loop « PL SQL « Oracle PL / SQL






While loop with complex conditions

   


SQL>
SQL>
SQL> --While loop with conditions
SQL>
SQL> SET SERVEROUTPUT ON
SQL>
SQL> DECLARE
  2     counter NUMBER(2):= 1;
  3     counter2 NUMBER(2):= 1;
  4  BEGIN
  5     WHILE counter <= 12 AND counter2 <= 14 LOOP
  6           counter :=  counter + 1;
  7           counter2 :=  counter2 + 1;
  8     END LOOP;
  9     DBMS_OUTPUT.PUT_LINE('counter2:'||counter2);
 10     DBMS_OUTPUT.PUT_LINE('counter:'||counter);
 11  END;
 12  /
counter2:13
counter:13

PL/SQL procedure successfully completed.

SQL>
SQL>
           
         
    
    
  








Related examples in the same category

1.Put two statement in while loop
2.Example of a WHILE loop that never executes
3.Corrected WHILE loop that executes
4.While Loop with condition
5.Change while loop counter
6.Insert value in while loop
7.Do calculation with while loop counter
8.Call EXIT to jump out of a while loop
9.Use EXIT WHEN to exit a while loop
10.WHILE..LOOP, Cursor Loop
11.WHILE Loop: This condition will evaluate to NULL, since v_Counter is initialized to NULL by default
12.WHILE Loop: Test the loop counter before each loop iteration to insure that it is still less than 50
13.WHILE Loop
14.This script demonstrates variable visibility
15.The WHILE loop uses a loop index value as its gate on entry criterion:
16.While loop and number counter