hive:获取当前时间、计算时间差

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

1、Hive中获取当前的时间:

select from_unixtime(unix_timestamp(),'yyyy-MM-dd HH:mm:ss')

 

2、Hive中计算时间差:

select datediff('2018-06-04','2018-06-05');

 

猜你喜欢

转载自blog.csdn.net/weixin_38750084/article/details/86093275