jamespeters01
IS-IT--Management
I have a main table (AllContactsInLists) and have used the following code to show me all duplicates that occur within this table.
In (SELECT [Address] FROM [AllContactsInLists] As Tmp GROUP BY [Address] HAVING Count(*)>1 )
Some of the duplicates contacts have many duplicates.
What I would like is to just show me one contact ([Address]) from each of the duplicates this codes produces.
Thanks for any advice.
In (SELECT [Address] FROM [AllContactsInLists] As Tmp GROUP BY [Address] HAVING Count(*)>1 )
Some of the duplicates contacts have many duplicates.
What I would like is to just show me one contact ([Address]) from each of the duplicates this codes produces.
Thanks for any advice.