如何将列中的连接值转置为行

时间:2018-12-08 05:38:03

标签: sql hive apache-spark-sql hiveql pyspark-sql

输入:

item   number
ABC     123

我想这样输出:

item   number
 A       1
 B       2
 C       3

1 个答案:

答案 0 :(得分:0)

使用split()分割字符串,使用posexplode()爆炸并使用横向视图。 用空字符串''分割将生成带有多余空元素的数组,将其过滤掉,并根据它们在数组中的位置连接项目和数字。

演示(用表替换子查询):

select i.itm as item, n.nbr as number
from
(--replace this subquery with your table
 --this is two rows example
select stack(2,'ABC', '123',
               'DEF', '456') as (item, number)   
) s --your_table  
lateral view posexplode(split(s.item,'')) i as pos, itm 
lateral view posexplode(split(s.number,'')) n as pos, nbr 
where i.itm!='' and n.nbr!='' and i.pos=n.pos ;  

结果:

OK
item    number
A       1
B       2
C       3
D       4
E       5
F       6
Time taken: 0.094 seconds, Fetched: 6 row(s)
hive>