如何在athena/presto中将数组(varchar(转换为varchar?
我的数组(varchar(数据看起来像这个
col_1 | col_2 |
---|---|
[hello_world] | [hello_hello] |
要将数组转换为数组,请使用array_join()
:
select [array_join(col_1, ' ')][1]