第一 建立資料庫並自定義路徑 如 /sogou/500w
hive> create database sogou location '/sogou/500w' ;
進入改表中建立表
hive> use sogou;
第二步 建立外部分割槽表 如 sogou_partition
hive> create external table sogou_partition (ts string,uid string,keyword string,rank int ,order int,ulr string) partitioned by (year string,month string,day stirng,hour string) row format delimited fields terminated by '\t' location '/sogou';
標準格式 (注意關鍵字要大寫)
hive> create external table sogou_partition(ts string,uid string,keyword string,rank int, order int, url string) partitioned by (year string,month string,day string,hour string) row format delimited fields terminated by '\t' location '/sogou_3/500w';
名詞解釋:
row 行
format 格式化
delimited 劃定界限的
fields 區域
terminated 終止
第三步 載入資料
hive> load data local inpath '/home/zkpk/resource/sogou-data/500w/ sogou.500w.utf8' into table sogou_partition_3 partition (year='2011',month='12',day='30',hour='10');
第四步查詢資料(前100行)
hive> select * from 搜狗_partition_3 limit 100;
Hive內部表,外部表,分割槽表的建立
建立內部表 預設儲存在 user hive warehouse下 也可以通過location指定 刪除表時,會刪除表資料及元資料 create table if not exists db study.student id string name string row format delimite...
hive 建立分割槽表
必須在表定義時建立partition a 單分割槽建表語句 create table day table id int,content string partitioned by dt string 單分割槽表,按天分割槽,在表結構中存在id,content,dt三列。以dt為資料夾區分 b 雙分割...
hive建立分割槽表
靜態分割槽去掉源資料分割槽列後執行 記得指定ymd 2019 10 10 1.建立分割槽表 create tabletemp pilesmallint,mp smallint,carownerint,hmsint partitioned by ymd int row format delimited...