K
Kentucky5
UPDATE Final INNER JOIN From ON [Final].[ID] = [From].[ID]
SET Final.Journals = [Final].[Comments]+": " & [From].
[Comments]
WHERE (((From.Comments) Is Not Null));
This query works when dealing with one primary field but
in this case I need to compare the ID and the VIN and make
sure that neither is a duplicate. If they do then I would
want certain data to be updated into the final table.
I hope this is clear.
SET Final.Journals = [Final].[Comments]+": " & [From].
[Comments]
WHERE (((From.Comments) Is Not Null));
This query works when dealing with one primary field but
in this case I need to compare the ID and the VIN and make
sure that neither is a duplicate. If they do then I would
want certain data to be updated into the final table.
I hope this is clear.