How to get array/bag of elements from Hive group by operator?

后端 未结 2 845
遥遥无期
遥遥无期 2021-01-01 12:35

I want to group by a given field and get the output with grouped fields. Below is an example of what I am trying to achieve:-

Imagine a table named \'sample_table\'

2条回答
  •  礼貌的吻别
    2021-01-01 13:26

    collect_set actually works as expected since a set as per definition is a collection of well defined and distinct objects i.e. objects occur exactly once or not at all within a set.

提交回复
热议问题