Join multiple columns from one table to single column from another table(将一个表中的多列连接到另一表中的单列)
本文介绍了将一个表中的多列连接到另一表中的单列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试学习如何将一个表中的多列连接到另一个表中的单列.
I'm trying to learn how to join multiple columns from one table to a single column from another table.
这是我最简单的表格结构:
团队
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 |
这是我当前将trades.team_1 连接到teams.id 的SQL:
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
This would mean both trades.team_1 AND trades.team_2 would be joined to 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;
这篇关于将一个表中的多列连接到另一表中的单列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:将一个表中的多列连接到另一表中的单列
基础教程推荐
猜你喜欢
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01