作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
ID | a | b | c
1 | a1 | b1 | c1
2 | a2 | b2 | c2
如何将行重新组织为 ID
、columntitle
、value
?
1 | a1 | a
1 | b1 | b
1 | c1 | c
2 | a2 | a
2 | b2 | b
2 | c2 | c
最佳答案
您正在尝试逆透视数据。 MySQL 没有 unpivot 函数,因此您必须使用 UNION ALL
查询将列转换为行:
select id, 'a' col, a value
from yourtable
union all
select id, 'b' col, b value
from yourtable
union all
select id, 'c' col, c value
from yourtable
这也可以使用CROSS JOIN
来完成:
select t.id,
c.col,
case c.col
when 'a' then a
when 'b' then b
when 'c' then c
end as data
from yourtable t
cross join
(
select 'a' as col
union all select 'b'
union all select 'c'
) c
关于MySQL - 如何将列逆透视到行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56463218/
我是一名优秀的程序员,十分优秀!