您的位置 首页 > 数码极客

hive中如何转换时间格式,hive 字符串转时间格式

select unix_timestamp(右边格式的日期时间,'yyyy-MM-dd HH:mm:ss'); -- 返回10位时间戳 select unix_timestamp(右边格式的日期时间,'yyyyMMdd HH:mm:ss');-- 返回10位时间戳 select from_unixtime(时间戳,'yyyyMMdd HH:mm:ss'); -- 返回右边格式的日期时间,时间戳需要是bigint类型!!! select from_unixtime(时间戳,'yyyy-MM-dd HH:mm:ss') -- 返回右边格式的日期时间,时间戳需要是bigint类型!!! select from_unixtime(unix_timestamp(右边格式的日期时间,'yyyyMMdd HH:mm:ss'),'yyyy-MM-dd HH:mm:ss') ; select from_unixtime(unix_timestamp(右边格式的日期时间,'yyyy-MM-dd HH:mm:ss'),'yyyyMMdd HH:mm:ss') ; 1 yyyyMMdd HH:mm:ss >> yyyy-MM-dd HH:mm:ss hive> select from_unixtime(unix_timestamp('20190430 23:59:02','yyyyMMdd HH:mm:ss'),'yyyy-MM-dd HH:mm:ss') as report_tm; OK 2019-04-30 23:59:02 Time taken: 0.056 seconds, Fetched: 1 row(s) hive> 2 yyyy-MM-dd HH:mm:ss >> yyyyMMdd HH:mm:ss hive> select from_unixtime(unix_timestamp('2019-04-30 23:59:02','yyyy-MM-dd HH:mm:ss'),'yyyyMMdd HH:mm:ss') as report_tm; OK 20190430 23:59:02 Time taken: 0.06 seconds, Fetched: 1 row(s) hive> 3 yyyy-MM-dd HH:mm:ss >> 10位时间戳 hive> select unix_timestamp('2019-04-30 23:59:02','yyyy-MM-dd HH:mm:ss'); OK 1556639942 Time taken: 0.053 seconds, Fetched: 1 row(s) hive> 4 yyyyMMdd HH:mm:ss >> 10位时间戳 hive> select from_unixtime(1556639942,'yyyyMMdd HH:mm:ss') as report_tm; OK 20190430 23:59:02 Time taken: 0.059 seconds, Fetched: 1 row(s) -- 注意:from_unixtime的时间戳入参不能是string类型!!! hive> select from_unixtime('1556639942','yyyyMMdd HH:mm:ss') as report_tm; FAILED: SemanticException [Error 10014]: Line 1:7 Wrong arguments ''yyyyMMdd HH:mm:ss'': No matching method for class...... hive> 5 时间戳转换为yyyyMMdd HH:mm:ss 或 yyyy-MM-dd HH:mm:ss -- 需要使用cast(xxx as bigint) hive> select from_unixtime(cast(00/1000 as bigint),'yyyyMMdd HH:mm:ss') as report_tm; OK 20190430 23:59:02 Time taken: 0.064 seconds, Fetched: 1 row(s) -- 如果源值是string类型,还需要先使用cast(xxxx as bigint),然后再除以1000!!!! hive> select from_unixtime(cast(cast('00' as bigint)/1000 as bigint),'yyyyMMdd HH:mm:ss') as report_tm; OK 20190430 23:59:02 Time taken: 0.086 seconds, Fetched: 1 row(s) hive> -- 注意:from_unixtime的时间戳不能是13位的整数!!! hive> select from_unixtime(23,'yyyyMMdd HH:mm:ss') as report_tm; OK 512971215 07:55:23 -- 结果错误 Time taken: 0.101 seconds, Fetched: 1 row(s) hive> 6 错误示例: hive> select from_unixtime(23/1000,'yyyyMMdd HH:mm:ss') as report_tm; FAILED: SemanticException [Error 10014] hive> select from_unixtime(00/1000,'yyyyMMdd HH:mm:ss') as report_tm; FAILED: SemanticException [Error 10014] 报错如下,可知:输入的入参是double类型的,但是第一个参数需要是int或bigint类型的: No matching method for class org.a with (double, string). Possible choices: _FUNC_(bigint) _FUNC_(bigint, string) _FUNC_(int) _FUNC_(int, string) 7 为何6报错??为何cast(xxx as bigint)正确? hive> select 00/1000 ; OK 1.556639942E9 -- 是double类型的,所以6报错 Time taken: 0.04 seconds, Fetched: 1 row(s) hive> select 23/1000 ; OK 1.556639942123E9 -- 是double类型的,所以6报错 Time taken: 0.05 seconds, Fetched: 1 row(s) hive> select cast(23/1000 as bigint); OK 1556639942 -- 是bigint类型的 ,所以5正确!! Time taken: 0.05 seconds, Fetched: 1 row(s) hive>

历史文章:

Mysql查询年的第多少周

MySQL分组统计你会吗?sum,if会用吗?

MySQL,case when你真的会用吗?附避坑指南

「欢迎关注,每天更新工作实用技能」

责任编辑: 鲁达

1.内容基于多重复合算法人工智能语言模型创作,旨在以深度学习研究为目的传播信息知识,内容观点与本网站无关,反馈举报请
2.仅供读者参考,本网站未对该内容进行证实,对其原创性、真实性、完整性、及时性不作任何保证;
3.本站属于非营利性站点无毒无广告,请读者放心使用!

“hive中如何转换时间格式,hive,字符串转时间格式,hive的时间格式,hive带毫秒的时间格式”边界阅读