一.问题 hive如何将 a b a b a b c d c d c d 变为: a b ,, c d ,, 二.数据 test.txt cat column_row.txt a,b, a,b, a,b, c,d, c,d, c,d, 三.答案 1. 建表 create table tmp.column_row ( col1 string, col2 string, col3 string ) row format delimited fields terminated by ',' store