根据相同的 id 连接两个表字段?

发布于 2024-12-04 07:44:19 字数 385 浏览 1 评论 0原文

需要帮助根据相同的 id 连接两个表。

表 1:

id_1 | id_2

表 2:

id | name

我需要一个查询,在表 2 字段 id 上查找 id_1 并返回字段名称,还在表 2 字段 id 上查找 id_2 并返回字段名称。

示例如下:

表 1:

1 | 2

表 2:

1 | Joe
2 | Michael

返回结果为:

Joe | Michael

谢谢,

Need a help joining two tables based on the same id.

Table 1:

id_1 | id_2

Table 2:

id | name

I need a query where looks for id_1 on table 2 field id and return the field name and also looks for id_2 on table 2 field id and return the field name.

An example would be:

Table 1:

1 | 2

Table 2:

1 | Joe
2 | Michael

Return would be:

Joe | Michael

Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

十六岁半 2024-12-11 07:44:19

这就是您正在寻找的:

select t21.name, t22.name
from Table1 t1 
inner join Table2 t21 on t1.id_1 = t21.id
inner join Table2 t22 on t1.id_2 = t22.id

This is what you are looking for:

select t21.name, t22.name
from Table1 t1 
inner join Table2 t21 on t1.id_1 = t21.id
inner join Table2 t22 on t1.id_2 = t22.id
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文