gpt4 book ai didi

mysql - 如何在 MySQL 中合并行?

转载 作者:行者123 更新时间:2023-11-29 03:51:07 26 4
gpt4 key购买 nike

我有一个这样的表:

// colors
+----+-------+--------+----------+---------+
| id | type | red_id | green_id | blue_id |
+----+-------+--------+----------+---------+
| 1 | 1 | 51 | NULL | NULL |
| 2 | 3 | NULL | NULL | 12 |
| 3 | 1 | 423 | NULL | NULL |
| 4 | 2 | NULL | 5432 | NULL |
| 5 | 2 | NULL | 10 | NULL |
+----+-------+--------+----------+---------+
// ^ type: there is either 1 or 2 or 3 which specifies which color isn't NULL

我想要这个输出:

// new_colors
+----+-------+----------+
| id | type | color_id |
+----+-------+----------+
| 1 | 1 | 51 |
| 2 | 3 | 12 |
| 3 | 1 | 423 |
| 4 | 2 | 5432 |
| 5 | 2 | 10 |
+----+-------+----------+

我想我必须使用 CASE .. WHEN 函数。

SELECT id, type,
CASE WHEN red_id IS NOT NULL THEN red_id
WHEN green_id IS NOT NULL THEN green_id
WHEN blut_id IS NOT NULL THEN blue_id
END AS color_id
FROM colors
WHERE 1

但我正在尝试根据 type 列编写查询。我想在 type 列中使用这三个数字 123 之一,而不是 CASE .. WHEN。那可能吗?

最佳答案

您想在 mysql 中使用 COALESCE 函数。合并函数返回作为参数传递给此函数的列列表中的第一个非空值。

select id, type,coalesce(red_id,green_id,blue_id) as color_id from colors

关于mysql - 如何在 MySQL 中合并行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37418693/

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