R
Robbie
I made a find duplicates query using the wizard, but now I need to delete
the duplicate records. I don't care which one is deleted so long as only one
exists. How can I turn this query into a delete query that will remove the
extra records?
SELECT Products.ISBN, Products.Title, Products.Binding, Products.ISBN13,
Products.ISBN10
FROM Products
WHERE (((Products.ISBN) In (SELECT [ISBN] FROM [Products] As Tmp GROUP BY
[ISBN] HAVING Count(*)>1 )))
ORDER BY Products.ISBN;
Thanks
the duplicate records. I don't care which one is deleted so long as only one
exists. How can I turn this query into a delete query that will remove the
extra records?
SELECT Products.ISBN, Products.Title, Products.Binding, Products.ISBN13,
Products.ISBN10
FROM Products
WHERE (((Products.ISBN) In (SELECT [ISBN] FROM [Products] As Tmp GROUP BY
[ISBN] HAVING Count(*)>1 )))
ORDER BY Products.ISBN;
Thanks