1. 首页
  2. 数据库
  3. 其它
  4. Hive分区/分桶

Hive分区/分桶

上传者: 2021-01-17 06:09:42上传 PDF文件 195.12KB 热度 18次
分区表: 创建分区表 ​ create table t_user_partition(id int, name string) partitioned by (country string) row format delimited fields terminated by ,; 分区表数据导入 hadoop fs -put 不能导入分区表的数据 load data local inpath '/root/hivedata/china.txt' into table t_user_partition partition(country ='china'); load dat
用户评论