hive中實現相似MySQL中的group_concat功能

博客搬家了,歡迎你們關注,https://bobjin.com
Sql代碼
  1. hive> desc t;  
  2. OK  
  3. id      string  
  4. str     string  
  5. Time taken: 0.249 seconds  
  6. hive> select * from t;  
  7. OK  
  8. 1       A  
  9. 1       B  
  10. 2       C  
  11. 2       D  
  12. Time taken: 0.209 seconds  

 

在Hive0.9中,可用:sql

 

SELECT id,
concat_ws('|', collect_set(str)) 
FROM t  
GROUP BY id;函數

獲得結果:spa

 

1 A|Bget

2 C|D博客

 

但在hive0.7中不容易實現,concat_ws函數不支持Array。string

博客搬家了,歡迎你們關注,https://bobjin.comclass

相關文章
相關標籤/搜索