作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个这样的表:
// 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
列中使用这三个数字 1
、2
、3
之一,而不是 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/
我是一名优秀的程序员,十分优秀!