hiveSQL时间日期处理

1.将字符串日期转为整型日期

hive数据库中存储的时间是string类型的,但是我们在取数的时候,习惯把字符串型的日期转换为整型的日期,如将’2020-09-03’转换成’20200903’,转换方式如下:

1)regexp_replace(substr(create_time,1,10),'-','')2)regexp_replace(to_date(create_time),'-','')

2.将整型日期转为字符串日期

(1)将INT类型的日期值使用cast()函数转成STRING类型,用Hive内置的unix_timestamp函数转成时间戳类型,最后将时间戳用from_unixtime转成yyyy-MM-dd的日期类型。

from_unixtime(unix_timestamp(cast(day as string),'yyyymmdd'),'yyyy-mm-dd')

(2)将INT类型的日期值转成STRING类型,再对字符串进行截取处理,用-拼接起来

concat(substr(cast(day as string),1,4),'-',substr(cast(day as string),5,2),'-',substr(cast(day as string),7,2))

3、常用的时间和日期函数

(1)返回查询时刻的当前日期

current_date  

(2)返回查询时刻的当前时间

current_timestamp()  

(3)返回开始日期startdate与结束日期enddate之前相差的天数

datediff(string enddate, string startdate) 

(4)在startdate基础上加上几天,返回加上几天之后的一个日期

date_add(DATE startdate, INT days)  

(5)在startdate基础上减去几天,返回减去几天之后的一个日期,功能与date_add很类似

date_sub(DATE startdate, INT days) 

(6)将date/timestamp/string类型的值转换为一个具体格式化的字符串。

date_format(DATE|TIMESTAMP|STRING ts, STRING fmt)
 
select date_format('2020-09-03', 'yy/MM/dd')
select date_format('2020-09-03', 'yy-MM-dd')
select date_format('2020-09-03', 'yyMMdd')
select date_format('2020-05-20', 'yyyy年MM月dd日 HH时mm分ss秒')

你可能感兴趣的:(SQL,hive,sql)