in Ingres I can do this
update table1 from table2
set table1.field = table2.field
where table1.id = table2.id
is there an equivalent in Oracle ?
Regards
Michael Newport
update table1 from table2
set table1.field = table2.field
where table1.id = table2.id
is there an equivalent in Oracle ?
Regards
Michael Newport
Comment