I have a table [QREVALUE] That has some incomplete data because I did not give enough text places when I initially set up the table. I would like to go back and repair the missing text with the correct text from [SkpiProblemLog]
Both tables have a comon Unique identifier in field [TagNumber]
*** I have a couple of records where the TagNumber is NULL...These do not need to be updated***
Summary:
QREVALUE.[ScrapTagRecord] needs to be updated with the Values that are in SkpiProblemLog.[ScrapTagRecord] for all records where [TagNumber] are equal.
What is the syntax for a simple Update query that would do this.
Here is what I tried and got a "enter Parameter" prompt...
Both tables have a comon Unique identifier in field [TagNumber]
*** I have a couple of records where the TagNumber is NULL...These do not need to be updated***
Summary:
QREVALUE.[ScrapTagRecord] needs to be updated with the Values that are in SkpiProblemLog.[ScrapTagRecord] for all records where [TagNumber] are equal.
What is the syntax for a simple Update query that would do this.
Here is what I tried and got a "enter Parameter" prompt...
Code:
UPDATE QREVALUE
INNER JOIN SkpiProblemLog ON QREVALUE.TagNumber = SkpiProblemLog.TagNumber
SET QREVALUE.ScrapTagRecord = SkpiProblemLog.ScrapTagRecord