hive时间函数
1、⽇期函数
1)时间戳:unix_timestamp/from_unixtime
select unix_timestamp(); --查询当前时间的时间戳,返回 1486524284
select unix_timestamp('2017-02-08 11:15:50'); --查询指定时间的时间戳,返回 1486523750 (若转换失败返回0)
select unix_timestamp('20170208 11:00:00','yyyyMMdd HH:mm:ss'); --转换指定格式时间的时间戳
select from_unixtime(1486523750); --查询指定时间戳的时间,默认格式yyyy-MM-dd HH:mm:ss ,返回 2017-02-08 11:15:50
select from_unixtime(1486523750,'yyyyMMdd'); --查询指定时间戳的时间,转换成指定格式,返回 20170208
2)⽇期提取年⽉⽇时分秒+周:year/month/day/hour/minute/second/weekofyear
select year('2017-02-08 11:15:50'),month('2017-02-08 11:15:50'),day('2017-02-08 11:15:50'),hour('2017-02-08 11:15:50'),minute('2017-02-08 11:15:50'),second('2017-02-08 11:15:50'),weekofyear('2017-02-08 11:15:50'); --查询指定⽇期的年⽉⽇时分秒和周,返回 2017、2、8、11、15、50、6
unix时间戳转换日期格式3)⽇期时间转⽇期:to_date
select to_date('2017-02-08 11:15:50'); --查询指定⽇期时间中的⽇期。返回 2017-02-08
4)⽇期⽐较
--⽇期⽐较,结束时间距离开始时间的天数。datediff(string enddate, string startdate)
select datediff('2017-02-02','2017-01-31');--返回 2
--⽇期增加和减少。date_sub (string startdate, int days)
select date_add('2017-01-31',2); --返回 2017-02-02
select date_sub('2017-02-02',2); --返回 2017-01-31
5)⽇期偏移
--⾃定义⽇期操作函数(返回带横线的⽇期):get_date
select get_date();--返回当前⽇期,返回 2017-02-09
select get_date(-2);--返回当前⽇期往前偏移2天的⽇期 ,返回 2017-02-07
--⾃定义⽇期操作函数(返回不带横线的⽇期):get_dt_date
select get_dt_date();--获取当前⽇期,返回 20170209
select get_dt_date(get_date(-2));--获取当前⽇期偏移,转为不带横杆的格式
select get_dt_date('2017-02-02',-2);--20170131
---------------------
作者:helen_elva
来源:CSDN
原⽂:blog.csdn/zhlelva/article/details/54924507?utm_source=copy
版权声明:本⽂为博主原创⽂章,转载请附上博⽂链接!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论