Question : List all city names with no repeats

What would be the sql command to list all city in a table with no repeats.   I only want the city listed 1 time.

Answer : List all city names with no repeats

SELECT DISTINCT(`city`) FROM `yourTable`;
Random Solutions  
 
programming4us programming4us