MySQL – 将表转换为不同的表
作者:互联网
我现在可能没有看清楚事情,但我在MySQL中有一个表,如下所示:
ID | a | b | c
1 | a1 | b1 | c1
2 | a2 | b2 | c2
出于某种原因(实际上是在另一个表上加入 – 基于ID,但我认为如果有人可以帮我解决这个问题,我可以自己做其余的事情),我需要这些行代替:
1 | a1 | a
1 | b1 | b
1 | c1 | c
2 | a2 | a
2 | b2 | b
2 | c2 | c
基本上,我需要查看以下行:ID,columntitle,value
有没有办法轻松做到这一点?
解决方法:
您正试图取消数据. 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
标签:unpivot,mysql 来源: https://codeday.me/bug/20190911/1804263.html