Intente usar DISTINCT así:
SELECT DISTINCT mycolumn FROM mytable
EDITAR:
Prueba
select mycolumn, count(mycolumn) c from mytable
group by mycolumn having c = 1
Intente usar DISTINCT así:
SELECT DISTINCT mycolumn FROM mytable
EDITAR:
Prueba
select mycolumn, count(mycolumn) c from mytable
group by mycolumn having c = 1