How do we convert a string into Array in hive?

2019-06-12 03:21发布

问题:

I am using hive 1.1

 hive> select country from releases limit 1;
 OK
 ["us","ca","fr"]

For now country is of type string in hive . How do I convert that into Array[String]?

I tried the below, but it is throwing error

 hive> select country, cast(country as Array[String]) from releases limit 1;
 FAILED: ParseException line 1:48 cannot recognize input near 'Array' '[' 'String' in primitive type specification

Can someone help me to do the typecasting?

回答1:

hive> with releases as (select '["us","ca","fr"]' as country)
    > select  split(regexp_extract(country,'^\\["(.*)\\"]$',1),'","')
    > from    releases
    > ;
OK
_c0
["us","ca","fr"]


标签: hadoop hive