hive部分:hive表中載入資料的方式(四種)
阿新 • • 發佈:2019-02-14
注意:hive不支援insert into table values()的插入資料
hive表中載入資料的四種方式
1.從本地載入資料
hive (hive)> create table wyp
> (id int,name string,
> age int,tel string)
> row format delimited
> fields terminated by '\t'
> stored as textfile;
load data local inpath '/opt/hive-0.13.1/emp.txt' into table emp ;
2.從HDFS載入資料:
load data inpath '/hive_load_data/wyp.txt' into table wyp;
注:這裡也是將HDFS中的內容移動到Hive中,而不是複製。另外一個一定要注意,如果有一個同樣名稱的檔案,你再使用命令載入資料是會報錯的。
3.從接的表中載入資料到hive中
hive (hive)> create table test( > id int,name string, > tel string) > partitioned by (age int) > row format delimited > fields terminated by '\t' > stored as textfile;
hive (hive)> insert into table test
> partition (age='25')
> select id,name,tel
> from wyp;
4.在建表的時候往表中插入資料
方式一:
hive (hive)> create table test4
> as
> select id,name,tel
> from wyp;
方式二:
hive (hive)> create table test4 > like wyp;