标签:
保险公司有一个表记录客户的信息,其中包括有客户的id,name和age(为了演示只列出这几个字段)。对于保险公司来说,客户每天都会发生变化,我们使用临时数据表customer_temp来记录每天客户信息,字段和属性与customer表一致,
create table customer_temp like customer;
load data local inpath ‘/home/hadoop/hivetestdata/customer_temp.txt‘ into table customer_temp partition(dt = ‘201506‘);
包含的数据示例如下所示:
hive> select * from customer_temp;标签:
原文地址:http://blog.csdn.net/jiangshouzhuang/article/details/46596637