我正在尝试学习如何将一个表中的多个列连接到另一表中的单个列。

这是我的表结构的最简单形式:

团队

id | team_name |
1  |   teamA   |
2  |   teamB   |
3  |   teamC   |
4  |   teamD   |

交易
id |  team_1 (FK to teams.id)  |  team_2 (FK to teams.id)  |
1  |            1              |              2            |
2  |            3              |              4            |

这是我当前使用的SQL,它将trades.team_1与team.id连接在一起:
SELECT teams.team_name AS team1, teams.team_name AS team2, trades.team_1, trades.team_2
FROM teams
JOIN trades ON (trades.team_1 = teams.id);

我的问题是,如何创建另一个将trades.team_2联接到trades.id的联接?

这意味着将trades.team_1和trades.team_2都加入到trades.id

我想找回的结果是:
team1  |  team2  |  team_1  |  team_2  |
teamA  |  teamB  |    1     |     2    |
teamC  |  teamD  |    3     |     4    |

最佳答案

像这样:

select t1.team_name as team1, t2.team_name as team2, t.team_1, t.team_2
from trades t
inner join teams t1 on t1.id = t.team_1
inner join teams t2 on t2.id = t.team_2;

08-07 07:22