Hi,
I'm using 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 can I set one of the field values in tblNewCustomers for all of the new records that I am importing in withn this statement e.g
tblNewCustomers.existCustomer = TRUE
Thanks in advance for any help
Noel