如何将数组<string>转换为hive中的字符串

Posted

技术标签:

【中文标题】如何将数组<string>转换为hive中的字符串【英文标题】:How to convert array<string> to string in hive 【发布时间】:2020-04-17 13:45:23 【问题描述】:

我想将 array&lt;string&gt; 转换为 hive 中的字符串。数组数据如下:

+-------------------------------------+--+
| NULL                                |
| ["Extension","Terms & Conditions"]  |
| ["Value (generic or item level)"]   |
+-------------------------------------+--+

我想收集数组值以在没有[""] 的情况下转换为字符串,这样我就可以得到如下结果:

+-------------------------------------+--+
| NULL                                |
| Extension,Terms & Conditions        |
| Value (generic or item level)       |
+-------------------------------------+--+

以下查询:select concat_ws(',', col_name) as col_name from table_stg; 提供了结果,但将 NULL 返回为空。我尝试了几个参考,例如:

How can I convert array to string in hive sql?

Hive - How to cast array to string?

但没有得到想要的结果。有什么方法可以得到想要的结果吗?

【问题讨论】:

使用case 表达式。 case when size(col_name) = 0 then null else concat_ws(',',col_name) end 嗨@VamsiPrabhala - 检查大小不起作用,但它给了我解决这个问题的想法。感谢您的评论:) 【参考方案1】:

参考 Vamsi 评论,我设法得到了这个,并想为社区参考回答。

select case when col_name is NULL then NULL 
    else concat_ws(',',col_name) end from table_name;

【讨论】:

以上是关于如何将数组<string>转换为hive中的字符串的主要内容,如果未能解决你的问题,请参考以下文章

C++,如何将char型数组转换为string类型数组。

如何将 std::vector<std::string> 转换为 C api 的 char*[] [重复]

如何将 List<int> 转换为 string[]?

如何将充满标记的 Object[] 转换为整数数组?

将 int 数组转换为 String 数组

将 JSON 对象数组转换为 Observable<string[]>