Sep 17, 2002 #1 BobLoblaws Programmer Joined Nov 20, 2001 Messages 149 Location CA Is there a way to remove duplicate records quickly? Possibly a query? Thanks,
Sep 18, 2002 #2 wilk Technical User Joined Sep 18, 2001 Messages 48 Location GB here is a way of finding duplicates, do with it as you like SELECT columns(can't be * and must include the column with duplicates) FROM table WHERE (((column with dups) In (SELECT [column with dups] FROM As Tmp GROUP BY [column with dups] HAVING Count(*)>1 ))) ORDER BY column with dups Upvote 0 Downvote
here is a way of finding duplicates, do with it as you like SELECT columns(can't be * and must include the column with duplicates) FROM table WHERE (((column with dups) In (SELECT [column with dups] FROM As Tmp GROUP BY [column with dups] HAVING Count(*)>1 ))) ORDER BY column with dups