Hive基础知识-数据类型

Hive基础知识-数据类型,第1张

Hive基础知识-数据类型

数据类型(51CTO Hive语言基础知识课程笔记)

1.字符类型

2.数据类型

3.日期时间类型

 4.复合类型

 5.其他类型

 字面量

 类型转换

任何证书类型都可以隐式转换为一个范围更广的数据类型

CAST是强制类型转换,CAST('1' AS INT) ,如果转换失败,则会返回空值

hive命令

创建表

create table person(
    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 'n'

创建文本文件person.txt

songsong,ling_han,xiao song:19_xiao xiaosong:18,hui long guan_beijing
Jeny,Jane_Lotiya,Nimble Jeny:19_Brave Jeny:18,chao yang_beijing

导入数据

load data local inpath 'person.txt' into table person;

查询写入的数据

select * from person;

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5479747.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存