I use INSERT INTO to copy rows of data from one table to another:
INSERT INTO tblNewCustomers (CustomerID, [Last Name], [First Name]) SELECT CustomerID, [Last Name], [First Name] FROM tblOldCustomers
How to set one of the field values ββin tblNewCustomers for all new records that I import using this operator, for example,
tblNewCustomers.existCustomer = TRUE
Thank you in advance for your help.
Noel
source share