SELECT DISTINCT(column_name) FROM your_table_name; #You can select distinct values for one or more columns. The column names has to be separated with comma. SELECT DISTINCT column_name_1, column_name_2 FROM your_table_name;