I have two tabels with a relation and I want to update a field in table A. Is it possible to combine update and join in the same query? I googled it but didnt find any working s
Just another example where the value of a column from table 1 is inserted into a column in table 2:
UPDATE Address SET Phone1 = sp.Phone FROM Address ad LEFT JOIN Speaker sp ON sp.AddressID = ad.ID WHERE sp.Phone <> ''