hive> create table scores(id int, score int)
> row format delimited
> fields terminated by ','
> row format delimited
> fields terminated by ','
> stored as textfile;
hive> load data local inpath '/home/bruce/study/perl/score.text' overwrite into table scores;
要求:
1. 两个表的维度必须一样,才能够正常写入
2. 如果查询出来的数据类型和插入表格对应的列数据类型不一致,将会进行转换,但是不能保证转换一定成功,比如如果查询出来的数据类型为int,插入表格对应的列类型为string,可以通过转换将int类型转换为string类型;但是如果查询出来的数据类型为string,插入表格对应的列类型为int,转换过程可能出现错误,因为字母就不可以转换为int,转换失败的数据将会为NULL。
3. overwrite是删除原有数据然后在新增数据,如果有分区那么只会删除指定分区数据,其他分区数据不受影响