B benwo Registered User. Local time Today, 22:16 Joined Nov 29, 2005 Messages 39 Mar 31, 2006 #1 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
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
Smart Registered User. Local time Today, 22:16 Joined Jun 6, 2005 Messages 436 Mar 31, 2006 #2 Try this SELECT Yourtable.phoneno, Count(Yourtable.phoneno) AS CountOfphoneno FROM Yourtable GROUP BY Yourtable.phoneno HAVING (((Count(Yourtable.phoneno))>1));
Try this SELECT Yourtable.phoneno, Count(Yourtable.phoneno) AS CountOfphoneno FROM Yourtable GROUP BY Yourtable.phoneno HAVING (((Count(Yourtable.phoneno))>1));