, ',')) num as tag_new where id=212022894; 二、行转列(根据主键,进行多行合并一列)使用函数:concat_ws(',',collect_set(column)) 说明:collect_list不去重,collect_set去重。 column的数据类型要求是 string eg:如表:t_column_to_row ,根据id,对tag_new进行 ...
concat_ws(',',collect_set(name)) 等价于 OushuDB 中的 select id,array_to_string(array_agg(distinct name),',') from id group by id; --行转列去重