Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: PL/SQL Question re: loops
So you want to loop 10 times and only execute the code in the loop when the condition is false.
>for i in 1..10
>loop
> if (some condition is not satisfied) then
> do all the other stuff
>end loop;
>
>