Hadoop/Hive - Split a single row into multiple rows

前端 未结 2 1577
渐次进展
渐次进展 2020-12-09 13:14

I\'m trying to find a way to split a row in Hive into multiple rows based on a delimited column. For instance taking a result set:

ID1  Subs
1     1, 2
2            


        
2条回答
  •  孤街浪徒
    2020-12-09 14:00

    Try this wording

    SELECT ID1, Sub
    FROM tableName lateral view explode(split(Subs,',')) Subs AS Sub  
    

提交回复
热议问题