美文网首页
HIVE中的from_unixtime函数

HIVE中的from_unixtime函数

作者: bigdata张凯翔 | 来源:发表于2020-06-26 01:37 被阅读0次

hive中的from_unixtime()函数,可以把时间戳格式的时间,转化为年月日时分秒格式的时间。

from_unixtime的参数要求为整数,且单位为秒。

如果从业务系统拿到的时间戳格式的时间单位为毫秒,则需要先将它转化为秒,方法如下
from_unixtime( int (timestamp_in_millisecond / 1000))

示例:

hive (default)> select from_unixtime(1556803199);
OK
_c0
2019-05-02 21:19:59
Time taken: 0.051 seconds, Fetched: 1 row(s)
hive (default)> select from_unixtime(int(1556803199681/1000), "yyyy-MM-dd"); 
OK
_c0
2019-05-02
Time taken: 0.055 seconds, Fetched: 1 row(s)

相关文章

网友评论

      本文标题:HIVE中的from_unixtime函数

      本文链接:https://www.haomeiwen.com/subject/gvkyfktx.html