Hi,
I am trying to update a multi value field Test_Assigned in Table B with the ID field from TableA. The TableB Assigned field and TableA Name field contain join data, there are records that do not have data in TableB Assigned so I have selected record 2323 to test.
When I run the following query record 2323 is not updated, please help correct the query.
UPDATE TableB INNER JOIN TableA
ON [TableB].[Assigned] = [TableA].[Name]
SET [TableB].[Test_Assigned].[Value] = [TableA].[ID]
WHERE ([TableB].[UID] = 2323);
Thanks