I have a MySQL database with two tables in it:
Members
- id, name, city_id
and:
Cities
- id, name
I want a query that will return each city name and how many members are in it.
The output I need is:
city_name count
------------------
New York 15
Los Angeles 20
something like this: