gpt4 book ai didi

mysql - SQL JOIN 不同表中具有相同值的行

转载 作者:行者123 更新时间:2023-11-29 11:37:54 25 4
gpt4 key购买 nike

所以我有这张 table

  code  |  name
-----------------
1 | abc
2 | asd
3 | aws

然后我就有了这个用于事务使用的新表

  code  | new_code
---------------------
1 | 2
2 | 3

我想得到如下所示的 View :

  code  |  name  |  new_code  |  name  |
---------------------------------------
1 | abc | 2 | asd |
2 | asd | 3 | aws |

我应该对此 View 使用什么样的查询。谢谢

最佳答案

SELECT t.code, t.name, n.new_code, nt.name
FROM this_table t
INNER JOIN new_table n ON t.code = n.code
INNER JOIN this_table nt ON n.new_code = nt.code

关于mysql - SQL JOIN 不同表中具有相同值的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36299402/

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