Hive array, map, struct类型的使用

1. array

1.1 需装载的数据样例

此时一个编号对应了多个部门,那么这些部门可以存为一个array。

1.2 首先创建表

create table t_dept_info(num string,dept array<string>) row format delimited fields terminated by ',' collection items terminated by "|";

dept array<string> : 声明了dept字段,类型为array,元素类型为string。

collection items terminated by "|": 声明了array各元素之间的分隔符为"|"。

1.3 装载数据并检查结果

load data local inpath '/root/data/t_dept_info.csv' overwrite into table t_dept_info;

1.4 array类型数据单元素的查询

如,只查询出每个num对应的第一个部门,则可用dept[0]进行取出,跟数组取数方式是一样的。

select num,dept[0] from t_dept_info;

2. map

2.1 需装载的数据样例

此时一个编号对应了一条信息,且这条信息收录的内容一致,那么这些信息可以存为maps。

2.2 首先创建表

create table t_user_info(num string ,info map<String,String>) row format delimited fields terminated by ',' collection items terminated by "|" map keys terminated by ':';

info map<string,string> : 声明了info字段,类型为map,key value类型均为string。

collection items terminated by "|" map keys terminated by ':': 声明了不同键值对之间(即为多组键值对组成的数组)的分隔符为"|",key value之间的分隔符为":"。

2.3 装载数据并检查结果

load data local inpath '/root/data/t_user_info.csv' overwrite into table t_user_info;

2.4 map类型查询

用字段['key']的方式进行查询。

3. struct

3.1 需装载的数据样例

','为分隔符,第二列数据从内容上看有显著的特点,可以自定义字段进行说明(如map那样处理),这里用struct比较合适

3.2 首先创建表

create table t_master_info(id int,info struct<name:string,master:string,createYear:string>) row format delimited fields terminated by ',' collection items terminated by "|";

info struct<name:string,master:string,createYear:string>: 声明info字段,并定义了其下属各子属性和子属性类型

collection items terminated by "|": 声明了struct类型之间的分隔符

3.3 装载数据并检查结果

3.4 struct类型查询

用"字段.属性"的方式进行查询,如这里的info.master

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

柏舟飞流

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

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

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

打赏作者

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

抵扣说明:

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

余额充值