自己构建疫情数据实现多重分区表

自己构建疫情数据实现多重分区表

– 多重分区:分区字段 之间有一个递进关系
–大于等于2个分区字段的就是多重分区。常用的是2重分区
– 创建一个多重分区表:

create table if not exists hive_Zhangyue_nolocation.sichuan_covid_count(
id int comment 'ID',
country string comment "分区",
cas int comment "确诊",
asy int comment "无症状"
)partitioned by (province string,city string)row format delimited fields terminated by ',';

– 加载数据

load data local inpath "/home/myhadoop/data/chendu.txt"into table hive_Zhangyue_nolocation.sichuan_covid_count
partition (province='sicuan',city='chendu');
load data local inpath "/home/myhadoop/data/deyang.txt"into table hive_Zhangyue_nolocation.sichuan_covid_count
partition (province='sicuan',city='deyang');
load data local inpath "/home/myhadoop/data/bazhong.txt"into table hive_Zhangyue_nolocation.sichuan_covid_count
partition (province='sicuan',city='bazhong');

– 验证分区表

show partitions hive_Zhangyue_nolocation.sichuan_covid_count;

– 验证数据

select *from sichuan_covid_count;

你还感兴趣:
1、疫情数据实现静态和动态加载数据到分区表
2、使用美国疫情数据创建分区表
3、使用有location 和无location创建HIVE数据库
4、在数据集目录中选取1个数据文件内部表创建表,选取1个数据文件创建外部表。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

风口浪尖上的鼠标

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值