gpt4 book ai didi

php - MySQL/PHP 将单个记录连接到多个记录

转载 作者:行者123 更新时间:2023-11-29 06:14:52 26 4
gpt4 key购买 nike

我有一个名为 ABC 的表,有 3 个字段:id1、id2、id3,其中包含数据:

id1 | id2 | id3
________________
1 | 5 | 3
3 | 4 | 2
2 | 3 | 1

我有第二个表,名为 XYZ,有 2 个字段,id 和标题,其中包含数据:

id |  title
______________
1 | title_1
2 | title_2
3 | title_3
4 | title_4
5 | title_5

表 ABC 中的 id 与表 XYZ 中每条记录的 id 匹配。 id 喜欢做的是将 ABC 表中的 id 与 XYZ 表中的 id 连接起来,并在一行中显示标题。因此,如果输出表 ABC 中的前两条记录,它将如下所示:

title_1, title_5, title_3
title_3, title_4, title_2

用 PHP 输出没问题,只是对 SQL 有点迷惑。我一直在尝试使用左连接,但还没有走得太远。任何帮助将不胜感激。

最佳答案

您可以使用不同的连接条件多次连接同一个表:

SELECT xyz1.title as title1, xyz2.title as title2, xyz3.title as title3
FROM ABC
JOIN XYZ as xyz1 ON xyz1.id = ABC.id1
JOIN XYZ as xyz2 ON xyz2.id = ABC.id2
JOIN XYZ as xyz2 ON xyz3.id = ABC.id3

这应该正确输出

title_1, title_5, title_3
title_3, title_4, title_2

关于php - MySQL/PHP 将单个记录连接到多个记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7174106/

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