Hive shell 常用命令
阿新 • • 發佈:2019-01-25
連線 hive shell
直接輸入 hive
1、顯示錶
hive> show tables;
OK
test
Time taken: 0.17 seconds, Fetched: 1 row(s)
2、建立表
hive> create table test(key string);
OK
Time taken: 0.265 seconds
3、建立分割槽表:
hive> create table logs(ts bigint,line string) partitioned by (dt String,country String);
4、載入分割槽表資料:
使用LOCAL選項將使用 本地檔案系統 ,否則將使用hdfs檔案系統。
hive> load data local inpath '/home/hadoop/input/file1' into table logs partition (dt='2014-03-11',country='CN');
5、展示表中有多少分割槽:
hive> show partitions logs;