SELECT DISTINCT column_name FROM table_name;
SELECT DISTINCT Singer FROM Artists;
SELECT COUNT(DISTINCT Singer) AS CountOfSingers FROM Artists;