Wizard Duplicated record Query

GetReel

Registered User.
Local time
Today, 04:41
Joined
May 22, 2003
Messages
67
Hi

Ive have used the wizard to search for duplicate record. after running the query i noticed that it picks up records where there is more than to duplicated. There a some record where there a 3 or 4 records I need to keep.

The criteria in the query is as follows;
In (SELECT [Name] FROM [Table1] As Tmp GROUP BY [Name] HAVING Count(*)>1 )

I would to be able to have the query return results where there only 2 duplicates not 3 or more.

I tried using In (SELECT [Name] FROM [Table1] As Tmp GROUP BY [Name] HAVING Count(*)>1 and <3 ) but it doesnt work
 
WORKED!!!!!!!!!


Cheers ..!
 

Users who are viewing this thread

Back
Top Bottom