I have the following SQL query:
UPDATE db1.dbo.oitems
SET f2 = oo.f2,
f3 = oo.f3,
f4 = oo.f4
FROM db1.dbo.oitems o
INNER JOIN db2.dbo.oitems oo
ON o.orderid = oo.orderid
Each table is in a different database and they have identical columns but different data with some matches in id but not in data. I simply want to set values for the columns f2,f3,f4 in the table I want to update to the values in the second table if they have the same orderid. The above command keeps saying 0 rows affected, so what's wrong with my logic?
updateclause must be either correlated to a table infromclause or be the same - meaning that you might have writtenupdate o ...or omit alias in db1 table. – Nikola Markovinović Jan 7 at 21:16