De-Dupe Query

benwo

Registered User.
Local time
Today, 22:16
Joined
Nov 29, 2005
Messages
39
Hi

I have a set of data in a table that is full of dupes, anyone know a simple De-Dupe Query? Ideally by phone number

Thanks

Ben
 
Try this

SELECT Yourtable.phoneno, Count(Yourtable.phoneno) AS CountOfphoneno
FROM Yourtable
GROUP BY Yourtable.phoneno
HAVING (((Count(Yourtable.phoneno))>1));
 

Users who are viewing this thread

Back
Top Bottom