Forum Moderators: coopster
I want to construct a query which gives a list of distinct cities in the table: "SELECT DISTINCT city FROM table ORDER BY city ASC" which gives the result "London, Madrid, New York, Paris". So far so good.
However, I want to LIMIT the list to the 3 most common cities in the table...
Could someone please tell me how to LIMIT the list in this way?