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

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Update Query

RE: Update Query

From: Hillman, Alex <Alex.Hillman_at_usmint.treas.gov>
Date: Wed, 30 May 2001 13:09:17 -0700
Message-ID: <F001.003145D1.20010530124305@fatcity.com>

if it was for one column you could use nvl or decode

update tablea set firstname=nvl((select firstname from tableb where tablea.id=tablea.id), firstname);

Alex Hillman

-----Original Message-----
Sent: Wednesday, May 30, 2001 3:56 PM
To: Multiple recipients of list ORACLE-L

Seems like Oracle Doesn't have to the query like this:

update tablea set firstname=tableb.firstname, lastname=tableb.lastname
where tableb.id = tablea.id;

I can have one, it works if it has a match for the two tables, otherwise the two columns updated to null:

update tablea set (firstname,lastname)
=(select firstname,lastname from tableb
  where tableb.id=tablea.id);

Then the following one works, but very ugly:

update tablea set (firstname,lastname)
=(select firstname,lastname from tableb
  where tableb.id=tablea.id)
where exists(
select 'x' from tableb
  where tableb.id=tablea.id)

Any suggestions?
TIA Chris Harvest



Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/
--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: CC Harvest
  INET: ccharvest_at_yahoo.com
Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Hillman, Alex
  INET: Alex.Hillman_at_usmint.treas.gov
Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Wed May 30 2001 - 15:09:17 CDT

Original text of this message

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