Tente usar DISTINCT assim:
SELECT DISTINCT mycolumn FROM mytable
EDITAR:
Experimentar
select mycolumn, count(mycolumn) c from mytable
group by mycolumn having c = 1
SELECT DISTINCT mycolumn FROM mytable
select mycolumn, count(mycolumn) c from mytable
group by mycolumn having c = 1