hive sql将big int数组转换为字符串数组

时间:2018-02-26 14:18:17

标签: sql hive

我正在尝试将一个大的int数组转换为hive SQL中的字符串数组

我尝试过使用

concat_ws

但这给了我一个错误

Argument 2 of function CONCAT_WS must be "string or array<string>", but "array<bigint>" was found.

我尝试使用

transform(mycolumn) using '/bin/cat' as mycolumn_as_string

它给出错误

 cannot recognize input near 'transform' '(' 'mycolumn' in selection target

如何将此bigint数组转换为数组字符串?

0 个答案:

没有答案