hive中的concat_ws和collect_list以及collect_set的转换处理,行转列,行转列去重
concat_ws(',',collect_list(name)) 等价于 OushuDB 中的 select id,string_agg(name,',') from id group by id; --行转列
concat_ws(',',collect_set(name)) 等价于 OushuDB 中的 select id,array_to_string(array_agg(distinct name),',') from id group by id; --行转列去重