Hive常用DDL、DML

# 修改表字段的数据类型
alter table dw.table_name change column combined_order_id combined_order_id bigint;

# 修改表字段的注释
alter table dw.table_name change column combined_order_id combined_order_id bigint comment '修改后的注释';

# 增加列
alter table dw.table_name add columns (receive_num int comment '注释');

# 删除列
# hive不支持删除列,可以通过创建一张新表进行实现

# 删除分区
alter table dw.table_name drop if exists partition (dt='2021-11-05');

# 模糊查询表名
show tables like 'test*';

# 修改表名
alter table dw.table_name rename to dw.new_table_name;

# 删除表
drop table if exists dw.table_name;

# 创建表
create table dw.table_name 
(
  modifier                      string comment'修改者id',
  update_time                   string comment'修改时间',
  version                       string comment'乐观锁'
) comment '基础sku每日全量快照表'
PARTITIONED BY (`dt` STRING)
ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t'
STORED AS ORC TBLPROPERTIES ("ORC.COMPRESS"="SNAPPY");

你可能感兴趣的:(#,Hive,hive,hadoop,数据仓库)