先建立临时表,先导入。因为上传数据时没有办法直接分区
create table movietemp(id int,area string,name string)
row format delimited fields terminated by ','
stored as textfile;
load data local inpath '/root/movies.txt' into table movietemp
再建立分区表,用area地区字段分区
create table movie(id int,name string)
partitioned by(area string)
row format delimited fields terminated by ','
stored as textfile;
用命令desc movie查看表结构
id,name,area 分区字段area被系统地置于最后
再用insert into select的方式从临时表导入分区表
insert into table movie partition(area)
select id,name,area from movietemp;
(select字段的顺序与分区表对应,地区字段最后)
在实际情况中,表的输出结果可能太多,不适于显示在控制台上,可以将Hive的查询输出结果直接存在一个新的表中。
我们称这种情况为CTAS(create table … as select)。
说明:CTAS操作是原子的,因此如果select查询由于某种原因而失败,新表是不会创建的。