hive创建分区表 hive添加分区 hive删除分区

创建外部分区表

create  external table if not exists 表名 (

  id int comment '唯一id',

  name string comment '姓名',

  age string commnet '年龄'

)

partitioned by(dt string);

不指定表的路径默认存放在hdfs默认路径下

1.给表添加分区

alter table 表名 add if not exists partition(dt='2022-12-12');

2.添加分区时指定分区读取hdfs上的文件路径

(不指定分区默认读取表文件路径下的分区路径)

alter table table1 add if not exists partition(dt='2022-12-12') location '/dws/table1/dt=2021-12-12';

这样添加的分区虽然是dt=2022-12-12 但是会读取   /dws/table1/dt=2021-12-12 文件下的数据

3.删除分区

alter table 表名 drop if exists partition(dt='2022-05-06');

你可能感兴趣的:(hdfs,hive,hadoop,大数据)