sql >> Base de Datos >  >> RDS >> Mysql

MySQL:SELECCIONE UN VALOR ÚNICO

Intente usar DISTINCT así:

SELECT DISTINCT mycolumn FROM mytable

EDITAR:

Prueba

select mycolumn, count(mycolumn) c from mytable
group by mycolumn having c = 1