Okay, I have been screwing around with Joins and Unions and can't quite get this right. I have one table I am trying to update with information from 2 others, but I can't get this working.
I need to say something like this:
UPDATE Table1 SET Table1.CustId = Table2.CustId, Table1.FirstName = Table2FirstName, Table1.Email = Table3.Email WHERE Table2.CustId = Table3.CustId
I need to say something like this:
UPDATE Table1 SET Table1.CustId = Table2.CustId, Table1.FirstName = Table2FirstName, Table1.Email = Table3.Email WHERE Table2.CustId = Table3.CustId