创建表的时候使用的字段分隔符和加载的文本数据里面的分隔符一致,否则加载到表里面的数据为NULL
ps:
创建表结构,使用逗号为字段分隔符。
hive> create table order_info(oid int,oname string,price int,cid int) row format delimited fields terminated by ',' stored as textfile;
加载的文本数据同样为逗号分隔符