建表:
create table row2col_1(col1 string,col2 string,col3 int)
row format delimited
fields terminated by ',';
表结构如下:
+-----------------+-----------------+-----------------+--+
| row2col_1.col1 | row2col_1.col2 | row2col_1.col3 |
+-----------------+-----------------+-----------------+--+
| a | b | 1 |
| a | b | 2 |
| a | b | 3 |
| c | d | 4