I am trying to generate a query from a table which has multiple dublicate records, but In my query, I only want the duplicate records to show once.
Any idea?
Thanks!
Any idea?
Thanks!
SELECT Account#, First(Field1), First(Field2), ....etc. FROM TableName GROUP BY Account#;
Comment