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

Home -> Community -> Usenet -> c.d.o.misc -> Re: UPDATE COMMAND

Re: UPDATE COMMAND

From: rockcogar <rock_cogarNOroSPAM_at_my-deja.com.invalid>
Date: Mon, 17 Jan 2000 09:59:16 -0800
Message-ID: <070dbf92.221821b8@usw-ex0102-009.remarq.com>


You have two choices here:

(1) Write an update statement with associated select statements like:

update employee e set e.salary = (select s.salary from sal s where s.emp = e.emp);

(2) Write a PL/SQL script that contains a "cursor loop" to do very
detailed processing.

Rock.
Oak Ridge, TN. USA.

Received on Mon Jan 17 2000 - 11:59:16 CST

Original text of this message

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