Hive之插入資料

2021-08-15 17:33:17 字數 545 閱讀 7894

hive之插入資料

使用sql語句建立乙個表,如下:

create

table(id int,name string,addr string) t_1;

新建乙個檔案test01.txt。並往其中寫入資料:

vi test01.txt

1 gaoyuliang handong

2 houzi beijing

3 baozi handong

4 qitongwei handong

5 dakang jingzhou

將test01.txt檔案匯入到hive中。使用以下命令:

load data local inpath '/root/test01.txt'

into

table t_1;

搜尋hive中資料表的值,使用以下命令:

select * from t_1;

Hive插入資料

1 建立完表之後,就可以插入資料了,在hive中,一般使用load data插入資料,資料 一般為兩種,一種是從本地檔案系統,第二種是從hadoop檔案系統。基本語法如下 load data local inpath filepath overwrite into table tablename p...

hive 表插入 匯入資料

1 覆蓋現有分割槽資料,如果沒有該指定分割槽,新建該分割槽,並且插入資料 insert overwrite table 庫名.表名 partition dt 2018 09 12 name tom select from 庫名.表名 where.2 向現有的分割槽插入資料 之前的資料不會被覆蓋 in...

Hive 建表 插入資料 插入復合型別

新建hive表 create table test a timestamp b struct 下面可選 row format delimited fields terminated by t stored as parquet 檢視建好的表的結構 hive show create table tes...