SELECT count(City), City
FROM table
GROUP BY City
ORDER BY count(City);
OU
SELECT count(City) as count, City
FROM table
GROUP BY City
ORDER BY count;
Ahh, désolé, j'ai mal interprété votre question. Je crois que la réponse de Peter Langs était la bonne.