hive 行分隔符_Hive中的数据类型以及案例实操

作者: 孙晨c

出处:https://www.cnblogs.com/sunbr/p/13759189.html

基本数据类型

22869a45ee828f3e0c3ae45cafc3c39c.png
6ce62f44f0467d9b33d67779284ca05b.png

对于Hive的String类型相当于数据库的varchar类型,该类型是一个可变的字符串,不过它不能声明其中最多能存储多少个字符,理论上它可以存储2GB的字符数。

集合数据类型

acc6809b0a8f94a92412410643e5396c.png

Hive有三种复杂数据类型 ARRAY、MAP 和 STRUCT 。ARRAY和MAP与Java中的Array和Map类似,而STRUCT与C语言中的Struct类似,它封装了一个命名字段集合,复杂数据类型允许任意层次的嵌套。

Map和Struct的区别: Struct中属性名是不变的!Map中key可以变化的!

案例实操

  1. 假设某表有如下一行,我们用JSON格式来表示其数据结构。在Hive下访问的格式为
{    "name": "songsong",    "friends": ["bingbing" , "lili"] ,       //列表Array,     "children": {                      //键值Map,        "xiao song": 18 ,        "xiaoxiao song": 19    }    "address": {                      //结构Struct,        "street": "hui long guan" ,        "city": "beijing"     }}
  1. 基于上述数据结构,我们在Hive里创建对应的表,并导入数据。创建本地测试文件test.txt
songsong,bingbing_lili,xiao song:18_xiaoxiao song:19,hui long guan_beijingyangyang,caicai_susu,xiao yang:18_xiaoxiao yang:19,chao yang_beijing

注意: 在一个表中,array每个元素之间的分隔符和Map每个Entry之间的分隔符和struct每个属性之间的分隔符需要一致!

  1. Hive上创建测试表test
create table test(name string,friends array,children map,address struct)row format delimited fields terminated by ','collection items terminated by '_'map keys terminated by ':'lines terminated by '';

字段解释:

row format delimited fields terminated by ',' -- 列分隔符

collection items terminated by '_' --MAP STRUCT 和 ARRAY 的分隔符(数据分割符号)

map keys terminated by ':' -- MAP中的key与value的分隔符

lines terminated by ''; -- 行分隔符

  1. 导入文本数据到测试表
hive (default)> load data local inpath ‘/opt/module/datas/test.txt’into table test
  1. 访问三种集合列里的数据,以下分别是ARRAY,MAP,STRUCT的访问方式
hive (default)> select friends[1],children['xiao song'],address.city from testwhere name="songsong";OK_c0     _c1     citylili    18      beijingTime taken: 0.076 seconds, Fetched: 1 row(s)

作者: 孙晨c

出处:https://www.cnblogs.com/sunbr/p/13759189.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值