gpt4 book ai didi

mysql - 从同一张表的n-n关系中提取数据

转载 作者:行者123 更新时间:2023-11-30 01:12:00 24 4
gpt4 key购买 nike

我需要一些关于 SQL 中遇到的小问题的帮助。
我目前有 Wamp 服务器 32 位和 MySQL 5.6.12
我有两个表,一个包含 id(主键)和其他内容,第二个表是第一个表上 n-n 关系的结果,表明某些错误可能是另一个错误的克隆。

我需要做的是:
取出一个错误列表,其中一个字段旁边有“克隆”错误的 ID。

我已经拥有的:
我有解决方案的一部分,我成功地将一些克隆的错误附加到一个错误上,并将克隆的错误从列表中取出,我想给你实际的代码,但我现在没有,但这里有一些看起来像这样(凭内存):

select bug_table.id, clones_table.clone
from bug_table
left outer join
(
select source_bug_id, Group_Concat(DISTINC cast(destination_bug_id AS string)) as clone
from relationship_table
Group by source_bug_id
) clones_table
On bug_table_id=source_bug_id
where id not in
(
select destination_bug_id
from relationship_table
)

该查询由 2 个子查询组成,第一个是将“clone id”列表添加到“origin id”,第二个是从实际结果中删除这些“clone id”
所以我的问题是:它只在表格的一侧查找克隆,我不知道如何用文字解释它,所以让我们举个例子
假设我有 4 个 bug,因此它们的 id 为 1,2,3,4,并且它们都是彼此的克隆在我的关系表中我有

source_bug_id   |destination_bug_id  
1 |2
1 |3
1 |4

因此,如果我用它抛出查询,它应该并且将会输出:

id      |clone  
1 |2,3,4

正是我想要的,但如果表包含以下内容:

source_bug_id   |destination_bug_id  
1 |2
3 |2
4 |2

它会输出我

id      |clone  
1 |2
3 |2
4 |2

当然,这不是我想要的......我已经考虑过如何解决我的问题:在我的查询中,我可以尝试添加一个子查询,替换“来自关系表”以准备好形状的表,我认为它可能类似于

(
select *
from relationship_table
group by destination_bug_id
)
union
(
select t1.destination_bug_id , t2.source_bug_id
from relationship_table as t1 inner join relationship_table as t2 on t1.destination_bug_id = t2.source_bug_id
where t1.source_bug_id not in
(
select source_bug_id
from relationship_table
group by destination_bug_id
)
)

我没有测试它,但第一个子查询应该对所有destination_bug_id进行分组,以确保它们是唯一的,第二个子查询应该将其添加到可能恢复的丢失行:/

我已经搜索过,但我不太熟悉英语术语,所以也许我可能会错过一个给我答案的主题。

最佳答案

您确定要在 SQL 中执行此操作吗?

如果 bug1 是 bug2 的克隆,bug2 是 bug3 的克隆,等等,会发生什么:

Id    CloneId
1 2
2 3
3 4

你应该想要结果

Id     Clones
1 2, 3, 4

这就变成了递归搜索,在SQL中会非常复杂。也许您想用 PHP 或您正在使用的任何语言来执行此操作。

对于您的情况,这是一个仅反转字段的查询,它为您提供部分结果:

select source_bug_id, 
Group_Concat(destination_bug_id) as clone
from
(
(
select source_bug_id, destination_bug_id
from relationship_table
)
union
(
select destination_bug_id, source_bug_id
from relationship_table
)
) as alls
group by source_bug_id

SOURCE_BUG_ID CLONE
1 2
2 1,3,4
3 2
4 2

SQL Fiddle

关于mysql - 从同一张表的n-n关系中提取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19391910/

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