Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Duplicate values in GROUP_CONCAT when using two many-to-many [duplicate]

I'm trying to get in a string two many-to-many associations. In this example, each team has an undetermined number of colours and an undetermined number won awards.

This is the schema:

enter image description here

And this is the query I'm using:

SELECT
    teams.name AS name,
    GROUP_CONCAT(colours.name) AS colours,
    GROUP_CONCAT(awards.name) AS awards
FROM
    teams

-- join colours
INNER JOIN teams_to_colours
        ON teams.id = teams_to_colours.team_id

INNER JOIN colours
        ON teams_to_colours.colour_id = colours.id

-- join awards
INNER JOIN teams_to_awards
        ON teams.id = teams_to_awards.team_id

INNER JOIN awards
        ON teams_to_awards.award_id = awards.id

WHERE
    teams.name="A-Team"

GROUP BY
    teams.id

The problem is that the colours and the awards get duplicated. Let's say A-Team has red and blue as colours, and as awards TrollAward and DarwinAward... the results I get from the SQL look like this:

name: "A-Team"
colours: "red,blue,red,blue"
awards: "TrollAward,DarwinAward,TrollAward,DarwinAward"

I have tried to join only one many-to-many, and works perfectly, so I guess I'm overseeing something with the multiple joins...

like image 855
bgusach Avatar asked Jun 20 '13 07:06

bgusach


1 Answers

The fast and dirty answer is to add DISTINCT in the GROUP_CONCAT() functions:

SELECT
    teams.name AS name,
    GROUP_CONCAT(DISTINCT colours.name) AS colours,
    GROUP_CONCAT(DISTINCT awards.name) AS awards
...

This may not be very efficient though with big tables. The second approach is to GROUP BY in two subqueries (derived tables), where you get the concatenation from awards in one and from colurs in the other, and then join these derived tables.

like image 77
ypercubeᵀᴹ Avatar answered Oct 15 '22 00:10

ypercubeᵀᴹ