SQL Distinct Statement
The DISTINCT statement in SQL is used to retrieve unique (different) values from a table, as a column may often contain numerous duplicate values.
SQL Distinct Apply to All Columns
Yes, the SQL Distinct statement applies (works) on all combinations of column values for all columns in the SELECT clause.