长话短说,来一个example实例:建表语句如下:
create table if not exists bdp_log( tableName string , dataTime string , startTime string , endTime string , groupName string , dcn1 int, dcn2 int, dcn3 int, dcn4 int, dcnCount int, hiveCount int, executeStatus string) row format delimited fields terminated by '|' stored as textfile;
我们在使用load data local inpath时,导入数据如下:
t6_bal_fund | 20150812 | 2015/08/12 10:08:54 | 2015/08/12 10:11:09 | fund |82|43|NULL|NULL|125|125|0
必须注意:int类型字段内容与前后的分隔符之间必须无空格,否则导入数据中,对应int类型字段内容为NULL。如果将类型改为double,int类型数据后会默认加上.0。