A family of Microsoft relational database management systems designed for ease of use.
Append or Update? Append = add a new record, update = change the value of a field in an existing record.
This changes the value in existing records if Table2.Field has a value.
UPDATE Table2 INNER JOIN Table1
ON Table2.ID = Table1.ID
SET Table2.Field5 = Table1.Field3
WHERE Table2.Field5 is Not Null
This changes the value in existing records if Table2.Field hasNo value.
UPDATE Table2 INNER JOIN Table1
ON Table2.ID = Table1.ID
SET Table2.Field5 = Table1.Field3
WHERE Table2.Field5 is Not Null
or Table2.Field5 = "" <<< add this if table2.field5 is a text field and is allowed to have zero length strings
John Spencer Access MVP 2002-2005, 2007-2011 The Hilltop Institute University of Maryland Baltimore County