I am trying to create an update statement in the Oracle. here it is version in Sql Server
UPDATE ev
SET
(ev.station_type = t.st_type, ev.adt = t.adt )
FROM source ev
JOIN dataTbl t
ON ev.counterID = t.counterID
There are two tables source table were counterID is primary key dataTBL table were counterID is Foreign key I am tring to get data from dataTBL to souce table.
I would appreciate if someone helps to create an Oracle version of the update. Thanks, Greener