AeolusUmbra
Programmer
What is the most efficient way to remove duplicate records from a table using Jet SQL? I want to delete redundant records, keeping only one copy of each. Currently I SELECT using a GROUP BY and HAVING COUNT(*)>1, and then I interate through in DAO, deleting redundancies. Is there some better way, perhaps using only a Jet SQL statement? Thanks in advance for your suggestions.