Re: Removing Duplicates




"Brian Bushay TeamB" <BBushay@xxxxxxxxx> wrote

What is the best way, using SQL, to remove duplicates
from an Access database?

If you have exact duplicate records do a
Select distinct * Into TempTable.
Then delete ... contents ... of original table and insert ...
from ... TempTable

Of course! Thx Brian. Rgds, JohnH
.



Relevant Pages