How Do You Select Unique Records From A Table?
How Do You Select Unique Records From A Table? SELECT DISTINCT returns only distinct (different) values. DISTINCT eliminates duplicate records from the table. DISTINCT can be used with aggregates: COUNT, AVG, MAX, etc. DISTINCT operates on a single column. How do I SELECT unique records from a table in SQL? The SELECT DISTINCT statement is