我们如何在 hive 中将字符串转换为数组?
Posted
技术标签:
【中文标题】我们如何在 hive 中将字符串转换为数组?【英文标题】:How do we convert a string into Array in hive? 【发布时间】:2017-08-30 16:52:23 【问题描述】:我使用的是 hive 1.1
hive> select country from releases limit 1;
OK
["us","ca","fr"]
现在 country 是 hive 中的 string 类型。如何将其转换为 Array[String]?
我尝试了以下,但它抛出错误
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
有人可以帮我做类型转换吗?
【问题讨论】:
【参考方案1】:hive> with releases as (select '["us","ca","fr"]' as country)
> select split(regexp_extract(country,'^\\["(.*)\\"]$',1),'","')
> from releases
> ;
OK
_c0
["us","ca","fr"]
【讨论】:
以上是关于我们如何在 hive 中将字符串转换为数组?的主要内容,如果未能解决你的问题,请参考以下文章