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

Bestellen Sie nach COUNT pro Wert

SELECT count(City), City
FROM table
GROUP BY City
ORDER BY count(City);

ODER

SELECT count(City) as count, City
FROM table
GROUP BY City
ORDER BY count;

Ahh, sorry, ich habe deine Frage falsch interpretiert. Ich glaube, Peter Langs Antwort war die richtige.