presto时间相关的函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了presto时间相关的函数相关的知识,希望对你有一定的参考价值。

参考技术A timestamp在存储时被保存成INT类型,只占用4个字节,但同时它可以显示为日期时间格式,保证了可读性,这就为我们使用数据带来了很多方便。

timestamp可以是10位也可以是13位,10位的精确到秒,13位的精确到毫秒,13位的必须用bigint或varchar(13)存储。

主要涉及(表示日期的)string与timestamp之间的转换

会让人比较费解的可能是int要通过from_unixtime函数才能转化成timestamp

date_format(timestamp, format) → varchar

date_parse( string ,  format ) → timestamp

参考:

https://prestodb.io/docs/current/functions/datetime.html

https://zhuanlan.zhihu.com/p/164645100

以上是关于presto时间相关的函数的主要内容,如果未能解决你的问题,请参考以下文章

Presto 中的用户定义函数

Presto 平均窗函数

Athena (Presto) SQL 窗口函数

presto和hive日期函数对比

SQL Presto:不支持相关子查询

等效于 hive 中 Presto 的 transform() 函数