hive中多行合并一行concat_ws(去重及不去重)
Posted Lenskit
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hive中多行合并一行concat_ws(去重及不去重)相关的知识,希望对你有一定的参考价值。
原始数据:
id score
aaa 1
aaa 2
aaa 3
预期结果:
id score
aaa 1,2,3
可使用
select id,concat_ws(',',collect_set(cast(colname as string)))
from table group by id;
使用concat_ws函数,需将字段转成string格式,collect_set会对该列进行去重,如果不需要去重,可使用collect_list参数代替。
创作打卡挑战赛 赢取流量/现金/CSDN周边激励大奖以上是关于hive中多行合并一行concat_ws(去重及不去重)的主要内容,如果未能解决你的问题,请参考以下文章