The following SQL statement selects all (including the duplicates) values from the "Country" column in the "Customers" table:
 

SELECT Country FROM Customers;

Now, let us use the SELECT DISTINCT statement and see the result.
 



Practice Excercise Practice now