I have a address table with multiple family members in it. I am using the SELECT DISTINCT command to remove the extra family members for a mailer. The DISTINCT FIELDS are address, city, state, zip and lname. How can I export into a new table a first name also? I am not picky about which name.
Here is the exact statement that I am using.
SELECT DISTINCT address, city, state, zip, lname INTO TableNoDups from Table1
Here is the exact statement that I am using.
SELECT DISTINCT address, city, state, zip, lname INTO TableNoDups from Table1