Got dups in an Access or SQL Server table?
To find out if you have duplicates of something, for example Invoices....
SELECT
Table1.Invoice, Count(Table1.Invoice) AS CountOfInvoice
FROM Table1
GROUP BY Table1.Invoice
HAVING (((Count(Table1.Invoice))>1));
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment