I am an Access 2010 novice who is trying to update one table with information from another i.e. when table 1 col 1 = table 2 col 1, update table 1 col 2 with table 2 col 2, but keep getting syntax errors when using the following code. Can anyone help point out where I am going wrong.
Code:
UPDATE TrafficApr11toDate SET [Originating Country] = (SELECT OriginatingCountry.[Mapped Originating Country], FROM OriginatingCountry WHERE OriginatingCountry.[Intermediate Originating Country] = TrafficApr11toDate.[Originating Country (Original)]);
Comment