Jump to content

Using COUNT and JOIN in a single query


Spiff

Recommended Posts

My simplified MySQL database contains two databases with data like this

 

cities

idname

1Amsterdam

2Brussels

 

hotels

idnamecity_id

1Hotel A11

2Hotel A21

3Hotel B12

 

In this case, there are 2 hotels in Amsterdam, and 1 in Brussels. This is the information I want to extract with a single query. I use:

 

SELECT cities.name, COUNT(hotels.city_id) AS num FROM cities INNER JOIN hotels ON (cities.id = hotels.city_id) GROUP BY hotels.city_id ORDER BY cities.name

 

I would like to have the result:

 

cities.namenum

Amsterdam2

Brussels1

 

But I get

 

cities.namenum

Amsterdam1

Amsterdam1

Brussels1

 

How do I adjust my query?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.