一、概述
hive时间处理函数from_unixtime和unix_timestamp的实现以及实例,从而方便后续的时间处理。
二、具体功能实现
1.unix_timestamp(date[, pattern]):
默认的时间格式是yyyy-MM-dd HH:mm:ss,如果日期不是这种格式无法识别,可以在加一个参数,传入自己想要的格式来解决
SELECT unix_timestamp('2022-01-09 15:30:00');
指定格式的实例
SELECT unix_timestamp('2022/01/09 15:30:00', 'yyyy/MM/dd HH:mm:ss');
2.from_unixtime(unix_time, format):
将一个时间戳转换为指定的格式
select from_unixtime(1641744000) -> '2022-01-09 00:00:00'
本文转载自: https://blog.csdn.net/u010886217/article/details/135486962
版权归原作者 RayBreslin 所有, 如有侵权,请联系我们删除。
版权归原作者 RayBreslin 所有, 如有侵权,请联系我们删除。