其他分享
首页 > 其他分享> > Hive中的一些时间函数简记

Hive中的一些时间函数简记

作者:互联网

Hive日期时间函数

在impala上执行的几种结果,供参考

select to_date(concat(substr(from_unixtime(unix_timestamp(),'yyyy-MM-dd'),1,8),'01'))
select current_timestamp()  --2022-04-28 14:37:24.777441000
select unix_timestamp() -- 1651128042
select from_unixtime(unix_timestamp(),'yyyy-MM-dd') -- 2022-04-28 串
select to_date(from_unixtime(unix_timestamp(),'yyyy-MM-dd')) --2022-04-28
select date_sub(to_date(from_unixtime(unix_timestamp(),'yyyy-MM-dd')),10) --2022-04-18 00:00:00

这算是一点日期方面的总结吧

标签:函数,--,timestamp,unix,Hive,yyyy,简记,unixtime,select
来源: https://www.cnblogs.com/hbym/p/16202876.html