Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Update statement question
Hi,
I need to update a table by selecting columns from 2nd table like following logic in SQL Server:
update tab1=20
set tab1.col1 =3D tab1.col1 + summ.col1,=20
tab1.col3 =3D case when tab1.col3 =3D 'A' and (tab1.col1 + summ.col1) =
>=3D
tab1.col5 then 'C' else tab1.col3 end=20
from tab1 inner join tab2 summ
on tab1.col3 =3D summ.col3
How can I rewrite this in oracle?
Thanks
--Harvinder
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Mon Aug 16 2004 - 12:43:01 CDT
![]() |
![]() |