Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: PL/SQL Question re: loops

Re: PL/SQL Question re: loops

From: peter hawdon <pete_at_petehawdon.co.uk>
Date: 2000/04/13
Message-ID: <8d57to$4s9$1@gxsn.com>#1/1

ermm...not sure if i understand what you want to do here but is it not just as straightforward as :

for i in 1..10
 loop
   if (some condition is satisfied) then

       null;
  else

     do all the other stuff
   end if;
 end loop;

or

for i in 1..10
 loop
   if not(some condition is satisfied) then

       do all the other stuff
   end if;
 end loop;

Jeremy Ovenden <jovenden_at_hazelweb.co.uk> wrote in message news:8d4pod$dd9$1_at_gxsn.com...
> Apologies if this is a really simple question, but in the 'mock' pl/sql
> below, is there a command to skip this iteration of a loop - basically not
> quit the procedure with 'return;' nor quit the loop using 'exit;'. I am
> aware this can be done using labels but is there an alternative?
>
> for i in 1..10
> loop
> if (some condition is satisfied) then
> skip this iteration
> end if;
>
> do all the other stuff
> end loop;
>
> Mant tia
>
> cheers
> jeremy - jovenden_at_hazelweb.co.uk
>
>
>
>
Received on Thu Apr 13 2000 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US