码迷,mamicode.com
首页 > 其他好文 > 详细

【HIVE】各种时间格式处理

时间:2019-10-08 21:40:51      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:div   日期   code   转换方法   style   mes   amp   详解   sub   

yyyy-MM-dd与yyyyMMdd000000转换的三种方法

 

方法一:date_format(只支持yyyy-MM-dd -> yyyyMMdd000000)

select date_format(2019-10-07, yyyyMMdd000000)
-- 20191007000000

 

方法二:from_unixtime + unix_timestamp

select from_unixtime(unix_timestamp(2019-10-07, yyyy-MM-dd), yyyyMMdd000000)
-- 20191007000000

select from_unixtime(unix_timestamp(substr(20191007000000,1,8),yyyyMMdd),yyyy-MM-dd)
-- 2019-10-07

 

方法三:substr + concat

select concat(substr(2019-10-07,1,4),substr(2019-10-07,6,2),substr(2019-10-07,9,2),000000)
-- 20191007000000

select concat(substr(20191007000000,1,4),-,substr(20191007000000,5,2),-,substr(20191007000000,7,2))
-- 2019-10-07

 

时间转换方法详解

 

unix_timestamp:格式化日期转时间戳

select unix_timestamp(2019-10-07 13:24:20,yyyy-MM-dd HH:mm:ss)
-- 1570425860

select unix_timestamp(20191007,yyyyMMdd)
-- 1570377600

 

from_unixtime:时间戳转格式化日期

select from_unixtime(1570425860,yyyy-MM-dd HH:mm:ss)
-- 2019-10-07 13:24:20

select from_unixtime(1570425860,yyyyMMdd000000)
-- 20191007000000

 

date_format:yyyy-MM-dd HH:mm:ss 时间转格式化时间

select date_format(2019-10-07 13:24:20, yyyyMMdd000000)
-- 20191007000000

select date_format(2019-10-07, yyyyMMdd000000)
-- 20191007000000

 

yyyy-MM-dd HH:mm:ss 注意

MM为月份

mm为分钟

HH为24小时制

hh为12小时制

 

【HIVE】各种时间格式处理

标签:div   日期   code   转换方法   style   mes   amp   详解   sub   

原文地址:https://www.cnblogs.com/caizhenghui/p/11637785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!