在athena/presto中将数组(varchar)转换为varchar



如何在athena/presto中将数组(varchar(转换为varchar?

我的数组(varchar(数据看起来像这个

col_1 col_2
[hello_world] [hello_hello]

要将数组转换为数组,请使用array_join():

select [array_join(col_1, ' ')][1]

相关内容

  • 没有找到相关文章

最新更新