Sep 17, 2002 #1 BobLoblaws Programmer Nov 20, 2001 149 CA Is there a way to remove duplicate records quickly? Possibly a query? Thanks,
Sep 18, 2002 #2 wilk Technical User Sep 18, 2001 48 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