I’m trying to change an append query to an update query. The append query was creating duplicate records. My first attempt at an update query blanked out all the records in the target table–definitely not what I intended. Here’s a sample from the SQL of both the update and append query (there are a lot more fields involved than EmpNo):
Append Query
INSERT INTO Bonus (EmpNo)
SELECT BonusTemp.EmpNo
FROM BonusTemp;
Update Query
UPDATE Bonus SET Bonus.EmpNo = [BonusTemp]![EmpNo]
Thanks,
Bob