HIVE常用語句

2021-06-25 10:55:51 字數 459 閱讀 2429



1.給表新增字段

alter table 表名 add columns (欄位名 資料型別);  

alter table bi_dpa.tdpa_utm_src_td add columns (utm_src_cate_id_s integer);

2.檢視表結構

一般情況下,只需要desc tablename ;

但如果我們需要檢視hive表的詳細資訊:desc extended  tablename;

3.修改欄位名

alter table table_name   

change [column] col_old_name col_new_name [資料型別]

例如:alter table bi_dpa.tdpa_utm_src_td change column utm_src_cate_id_s test_col integer;

hive常用語句

1.匯入有分割槽的資料 oracle語句 select from xx partition fmlg part where conditions 2.增量匯入關係型資料庫orcle的where語句表示式 select from xx where d update to date 20170423 y...

Hive 常用語句

1 建立外部表 最後一行指定位置 2 覆蓋插入除某個欄位外的其他字段 如 ms 字段 這種適合於直接分割槽表的資料插入到新錶,但是不需要舊表的分割槽字段。set hive.support.quoted.identifiers none insert overwrite table db.tb01 p...

Hive常用語句記錄

alter table rename to 表新增字段 alter table tablename add columns field type 分割槽新增字段 alter table tablename partition yyy add columns field type alter tabl...