gpt4 book ai didi

mysql - 连接并显示另一个表引用的一个表中的 2 列

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

我有2张 table

table_A 内的列:数据、id_A、id_B、状态

enter image description here

table_B 内的列:id、用户名

enter image description here

我想显示 table_A 内列的 table_B 引用中的用户名(id_A 和 id_B),并将别名 id_A 设置为 User_1,将 id_B 设置为 User_2

我一直在使用 INNER JOIN,但它仍然让我感到困惑

最佳答案

你能试试这个吗...

SELECT a.username as User_1, b.username as User_2 FROM
table_A t
JOIN table_B b on b.id = t.id_B
JOIN table_B a ON a.id = t.id_A

关于mysql - 连接并显示另一个表引用的一个表中的 2 列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17439025/

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