Empty Loop statement : Loop « PL SQL « Oracle PL / SQL






Empty Loop statement

  
SQL>
SQL>   BEGIN
  2         LOOP
  3              NULL;
  4              EXIT;
  5         END LOOP;
  6    END;
  7  /

PL/SQL procedure successfully completed.

SQL>
SQL> --

   
  








Related examples in the same category

1.Use EXIT WHEN to exit a loop
2.unconstrained loop
3.Loop with label
4.LOOP..END LOOP, Cursor Loop
5.Insert a row into MyTable with the current value of the loop counter.
6.An anonymous block demonstrates a guard on exit simple loop