Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Are these suppose to be equivalent?
I don't see much subquery magic here ...
you can probably rewrite the first update statement into an update against
an updatable join view:
(bear with me, I don't have the actual tables to test my syntax and check
for error messages ;-)
update (select p.loc_seq_no as p_loc_seq_no , l.loc_seq_no as l_loc_seq_no from planb_location p join location l on (l.brand_id = p.brand_id and l.loc_id = p.location_or_group ) )
this way you give the optimizer more possibilities, and I personally find the statement easier to read.
Kind regards,
Lex.
-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org]On Behalf Of Stephen.Lee_at_DTAG.Com
Sent: Tuesday, September 28, 2004 17:06
To: oracle-l_at_freelists.org
Subject: Are these suppose to be equivalent?
On the tables I have here, in a 9.2.0.4 database, the following produce the same update. The question is: Should they? That is, is this something the SQL spec says is supposed to work this way, or is this just some more subquery magic being applied by the Oracle optimizer. The intent is to update a column in one table (planb_location) with the corresponding values from another table (location).
-- http://www.freelists.org/webpage/oracle-lReceived on Tue Sep 28 2004 - 14:19:21 CDT
![]() |
![]() |