Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL:EINDEUTIGEN WERT AUSWÄHLEN

Versuchen Sie, DISTINCT zu verwenden so:

SELECT DISTINCT mycolumn FROM mytable

BEARBEITEN:

Versuchen Sie es

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