Friday, November 25, 2011
For Loop in PL/SQL
One of the statement in oracle I use most is for loop in pl/sql. This for loop is very handy to use and the basic statement comes like this:
for variable in 1..x
loop
statement;
end loop;
The reverse loop statement is:
for variable in reverse 1..x
loop
...