Skip to content
Advertisement

MySQL Join Over 5 tables

The Situation

We have these 5 different MySQL tables:

Table club

Table city

Table country

Table Genre

Table club2genre

What is expected

The expected result would be this:

What I’ve tried

Using the following query

I managed to get the following result:

However I’ve now been trying for hours to somehow link the City and Country to the result but stuff like this:

doesn’t work and MySQL just throws errors like ERROR: 1054 (42S22): Unknown column 'club.id' in 'on clause'. Then again it this point I’m more guessing than actually knowing what I’m doing. I assume I’d have to throw even more joins in there? I’m not that familiar with MySQL and it’s been ages since I touched SQL in general so any help would be greatly appreciated.

Advertisement

Answer

You are mixing explicit and implicit join syntax.Use explicit only.

Also you should properly GROUP BY all columns that are in SELECT clause without aggregate function

That gives:

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement