gpt4 book ai didi

php - mysql 连接三个表以显示为分组依据

转载 作者:行者123 更新时间:2023-11-29 13:25:44 24 4
gpt4 key购买 nike

我必须加入三张 table ,但我对此不太擅长。我有三张 table

tournaments

id | name |

teams

id | name

teams_to_tournament

id | tournament_id | team_id

现在我想将其加入到一个查询中,以便我可以显示所有锦标赛以及该锦标赛的以下球队

Tournament name 
tournament team1,tournament team 3,...

Tournament name 2
tournament team1,tournament team 3,...

请你帮我解决这个问题。

最佳答案

您需要将GROUP_CONCAT函数与GROUP BYtournament.name结合使用。

  SELECT tr.name AS tournament, GROUP_CONCAT (tm.name) AS teams
FROM tournaments tr JOIN teams_to_tournaments tt
ON tr.tournament_id = tt.tournament_id
JOIN teams tm ON tm.team_id = tt.team_id
GROUP BY tr.name;

了解有关GROUP_CONCAT的更多信息 here .

关于php - mysql 连接三个表以显示为分组依据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20170738/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com