this is concerning SQL Server Management
I have been getting this error when trying to update a table: "Ambiguous column name 'Id'."
this is the query:
update DispatcherDB.dbo.Engineer
set MobilePhone = RestoreDB.dbo.W6ENGINEERS.MobilePhone
from DispatcherDB.dbo.Engineer join RestoreDB.dbo.W6ENGINEERS
on Id = W6Key
I have done this query before on other tables without a problem. I'm still a novice when it come to SQL, so any help/advice would be greatly appreciated! Thanks!