hive sql 将array<float>转成string
在网上找了很久,终于解决了,代码如下:
with mydata as (
select
ID,
my_array
from
(
--some array<struct> example
select
1 ID,
array(1.1, 2.2, 3.3) as my_array
union all
select
2 ID,
array(4.4, 5.5, 6.6) as my_array
) s
)
select
ID,
concat(
'[',
concat_ws(',', collect_list(element)),
--collect array of strings and concatenate it using ',' delimiter
']'
) as my_string
from
(
select
s.ID,
cast(mystruct as string) as element --concatenate struct using : as a delimiter Or concatenate in some other way
from
mydata s lateral view explode(s.my_array) a as mystruct
) s
group by
ID;
结果示意图:
id my_string
1 [1.1,2.2,3.3]
2 [4.4,5.5,6.6]