gpt4 book ai didi

mysql - 我可以在 MySQL 中进行 GROUP BY,但在分组时让它忽略空值,必要时删除结果行吗?

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

我的表:

t1

col_a  col_b
1 100
1 200
1 300
2 400

t2

col_a  col_b
100 5
100 6

t3

col_a  col_b
5 100
6 200
6 300

如果我运行查询并按顺序左连接 3 个表,我会得到:

1   100  5     100
1 100 6 200
1 100 6 300
1 200 null null
1 300 null null
2 400 null null

如果我按 t1.col_a、t2.col_b 添加分组:

1   100           5      100
1 100 6 (200 or 300)
1 (200 or 300) null null
2 400 null null

但我不想显示第 3 行,因为它在 t2.col_b 中没有值。我可以在该列不为空的位置添加一个条件,但这会删除需要保留的最后一行。

在一个完美的查询中,我希望看到:

1   100           5      100
1 100 6 (200 or 300)
2 400 null null

最佳答案

试试这个。 t1.col_b 有点棘手,因为如果存在多个 t1.col_a 值但没有引用 t2,则此查询会为此选择一个随机数。

SELECT
sub.col_a,
IFNULL(sub.relation,t1.col_b),
t2.col_b,
t3.col_b
FROM(
SELECT
t1.col_a,
group_concat(DISTINCT t2.col_a) AS relation
FROM table1 AS t1
LEFT JOIN table2 AS t2 ON t2.col_a = t1.col_b
GROUP BY t1.col_a
) AS sub
LEFT JOIN table1 AS t1
ON t1.col_a = sub.col_a
AND (t1.col_b IN (sub.relation) OR sub.relation IS NULL)
LEFT JOIN table2 AS t2
ON t2.col_a = t1.col_b
LEFT JOIN table3 AS t3
ON t3.col_a = t2.col_b
GROUP BY t1.col_a, t2.col_b

关于mysql - 我可以在 MySQL 中进行 GROUP BY,但在分组时让它忽略空值,必要时删除结果行吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24373429/

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