Corrected WHILE loop that executes : While Loop « PL SQL « Oracle PL / SQL






Corrected WHILE loop that executes

   
SQL>
SQL> -- Corrected WHILE loop that executes.
SQL>
SQL> set serveroutput on;
SQL>
SQL> DECLARE
  2        c NUMBER := 0;
  3  BEGIN
  4       WHILE c <= 10 LOOP
  5             c := c + 1;
  6             DBMS_OUTPUT.PUT_LINE('The value of c is ' || c);
  7       END LOOP;
  8  END;
  9  /
The value of c is 1
The value of c is 2
The value of c is 3
The value of c is 4
The value of c is 5
The value of c is 6
The value of c is 7
The value of c is 8
The value of c is 9
The value of c is 10
The value of c is 11

PL/SQL procedure successfully completed.

SQL>

           
         
    
    
  








Related examples in the same category

1.Put two statement in while loop
2.Example of a WHILE loop that never executes
3.While Loop with condition
4.Change while loop counter
5.While loop with complex conditions
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