hive-hiveテーブルフィールドのコメントの変更
1661 ワード
hiveテーブルフィールドのコメントの変更
変更前
hive> desc dw.fct_user_ctag_today;
OK
user_id int id
user_tag int
rpt_tag int
group_rpt_tag int
date string
# Partition Information
# col_name data_type comment
date string
Time taken: 0.04 seconds, Fetched: 10 row(s)
alter table
hive> use dw;
hive> alter table fct_user_ctag_today CHANGE COLUMN rpt_tag rpt_tag int comment '1 ,2 ,3 ,5 ';
変更後
hive> desc dw.fct_user_ctag_today;
OK
user_id int id
user_tag int
rpt_tag int 1 ,2 ,3 ,5
group_rpt_tag int
date string
# Partition Information
# col_name data_type comment
date string
Time taken: 0.031 seconds, Fetched: 10 row(s)
私のブログは間もなくテンセント雲+コミュニティに同期して、みんなを招待して一緒に入居します:https://cloud.tencent.com/developer/support-plan?invite_code=3ckgexxns8g0o
hive> desc dw.fct_user_ctag_today;
OK
user_id int id
user_tag int
rpt_tag int
group_rpt_tag int
date string
# Partition Information
# col_name data_type comment
date string
Time taken: 0.04 seconds, Fetched: 10 row(s)
hive> use dw;
hive> alter table fct_user_ctag_today CHANGE COLUMN rpt_tag rpt_tag int comment '1 ,2 ,3 ,5 ';
hive> desc dw.fct_user_ctag_today;
OK
user_id int id
user_tag int
rpt_tag int 1 ,2 ,3 ,5
group_rpt_tag int
date string
# Partition Information
# col_name data_type comment
date string
Time taken: 0.031 seconds, Fetched: 10 row(s)