Skip to content
Advertisement

GROUP_CONCAT and JOINS with multiple lookup tables

I have a simple series of joins with a GROUP_CONCAT that need to be performed on a number of tables and lookup tables.

So, if unit_fk = 1 and discipline_fk = 5 in the corresponding lookup tables, the results should look like the following given the test data in the fiddle (link below):

What I have so far is the following query, which just gets results for unit_outcome -> discipline_outcomes, without filtering on the unit and the unit_unit_outcome_lookup tables, e.g. for unit_fk = '1' as well as the discipline_fk:

I need to incorporate those two tables in the above query to only have unit_outcomes that correspond to a given unit_fk as well as the discipline_fk. Not sure how to do this though.

db fiddle

Advertisement

Answer

You must join all the tables with INNER joins like this:

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