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

∥☆過路亽.° 提交于 2019-12-01 16:55:28

问题


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:

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...


回答1:


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.



来源:https://stackoverflow.com/questions/17208221/duplicate-values-in-group-concat-when-using-two-many-to-many

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!