Hive中日期函数总结

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq646748739/article/details/77997276

–Hive中日期函数总结:

–1.时间戳函数

–日期转时间戳:从1970-01-01 00:00:00 UTC到指定时间的秒数

select unix_timestamp(); --获得当前时区的UNIX时间戳

select unix_timestamp(‘2017-09-15 14:23:00’); 

select unix_timestamp(‘2017-09-15 14:23:00’,‘yyyy-MM-dd HH:mm:ss’);

select unix_timestamp(‘20170915 14:23:00’,‘yyyyMMdd HH:mm:ss’); 


–时间戳转日期

select from_unixtime(1505456567); 

select from_unixtime(1505456567,‘yyyyMMdd’); 

select from_unixtime(1505456567,‘yyyy-MM-dd HH:mm:ss’); 

select from_unixtime(unix_timestamp(),‘yyyy-MM-dd HH:mm:ss’); --获取系统当前时间


–2.获取当前日期: current_date

hive> select current_date from dual

2017-09-15


–3.日期时间转日期:to_date(string timestamp) 

hive> select to_date(‘2017-09-15 11:12:00’) from dual;

2017-09-15


–3.获取日期中的年/月/日/时/分/秒/周

with dtime as(select from_unixtime(unix_timestamp(),‘yyyy-MM-dd HH:mm:ss’) as dt)

select year(dt),month(dt),day(dt),hour(dt),minute(dt),second(dt),weekofyear(dt)

  from dtime

  

–4.计算两个日期之间的天数: datediff

hive> select datediff(‘2017-09-15’,‘2017-09-01’) from dual;  

14


–5.日期增加和减少: date_add/date_sub(string startdate,int days)

hive> select date_add(‘2017-09-15’,1) from dual;    

2017-09-16

hive> select date_sub(‘2017-09-15’,1) from dual;    

2017-09-14


–其他日期函数

查询当前系统时间(包括毫秒数): current_timestamp;  

查询当月第几天: dayofmonth(current_date);

月末: last_day(current_date)

当月第1天: date_sub(current_date,dayofmonth(current_date)-1)

下个月第1天: add_months(date_sub(current_date,dayofmonth(current_date)-1),1)


  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值