SQL Unpivot table(SQL 逆透视表)
问题描述
我在 unpivot sql 语句上遇到问题,下表是它的样子:
I am facing problem on unpivot sql statement, below is the table how its look like:
ID A0001 A0002 A0003
== =========== ========== ==========
S1 100 200 300
S2 321 451 234
S3 0 111 222
我想旋转 A0001、A0002 和 A0003.为 HEADER、SEQUENCE 和 DATA 再创建 3 列.下面是我预期的表格会变成这样:
I want to pivot A0001,A0002 and A0003. Create 3 more column for HEADER,SEQUENCE AND DATA. Below is my expected table to become like this:
ID HEADER SEQUENCE DATA
== ========== =========== =======
S1 A0001 1 100
S1 A0001 2 200
S1 A0001 3 300
S2 A0002 1 321
S2 A0002 2 451
S2 A0002 3 234
S3 A0003 1 111
S3 A0003 2 222
下面是我尝试过的sql语句:
Below is the sql statement I have try:
SELECT ID,DATA FROM
(SELECT ID,A0001,A0002,A0003 FROM STG.TABLE_A)
UNPIVOT
(DATA FOR B IN (A0001,A0002,A0003)) C
我写的SQL只允许显示pivot后的数据,对于HEADER和SEQUENCE字段我不知道怎么写
The SQL I write only allow to show the data after pivot, for HEADER and SEQUENCE field I have no idea how to write
其次,我还想过滤掉是否有任何枢轴列为零将被过滤掉.例如,ID = S3,A0001 为 0,因此过滤零只得到其他大于零的字段
Secondly, I would also like to filter out if any pivot column is zero will be filter out. Example, ID = S3, A0001 is 0,therefore filter the zero and only get other fields which is greater than zero
推荐答案
应用unpivot后可以有这种情况,如下图-
You can have this condition after appling unpivot as below -
SELECT ID, DATA, header
FROM (SELECT ID, A0001, A0002, A0003 FROM STG.TABLE_A)
UNPIVOT(DATA FOR header IN (A0001, A0002, A0003)) C
where data <> 0
在这种情况下,您可以使用 unvipot 函数,也可以简单地使用 union ,如下所示 -
You can either use the unvipot function or you can simply use union also in this case as below -
select id, header, sequence, data
from (select @i := if(@lastid != id, 1, $i + 1) as sequence,
@lastid := id,
id,
header,
data
from (
select ID, 'A0001' as Header, A0001 as DATA
from your_table_name
where A0001 <> 0
union all
select ID, 'A0002' as Header, A0002 as DATA
from your_table_name
where A0002 <> 0
union all
select ID, 'A0003' as Header, A0003 as DATA
from your_table_name
where A0003 <> 0
)t_1
ORDER BY ID, DATA
) t_2
这篇关于SQL 逆透视表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SQL 逆透视表
基础教程推荐
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 在多列上分布任意行 2021-01-01
