根据相同的 id 连接两个表字段?
需要帮助根据相同的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是您正在寻找的:
This is what you are looking for: