SELECT DISTINCT
The SELECT DISTINCT command retrieves only unique values from the result set.
The provided SQL statement selects only the DISTINCT values from the “Country” column in the “Customers” table.
Example
SELECT DISTINCT Country FROM Customers; |