Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: sqlplus: loop until no updates
Hallvard B Furuseth wrote:
>
> How do I do this?
>
> LOOP
> UPDATE ...;
> <EXIT if no changes in last update>;
> END LOOP;
>
> --
> Hallvard
-- LOOP UPDATE ... SET <colname> = value... WHERE .... <colname> != value; END LOOP; Will exit after last update.Received on Wed Apr 02 1997 - 00:00:00 CST
![]() |
![]() |