我想在hive中将数组转换为字符串.我想collect_set数组值转换为字符串而不用[[""]].
[[""]]
select actor, collect_set(date) as grpdate from actor_table group by actor;
这[["2016-07-01", "2016-07-02"]]将成为2016-07-01, 2016-07-02
[["2016-07-01", "2016-07-02"]]
2016-07-01, 2016-07-02
arrays string hive hiveql
arrays ×1
hive ×1
hiveql ×1
string ×1