如何在 Presto 中将时间戳转换为日期?
Posted
技术标签:
【中文标题】如何在 Presto 中将时间戳转换为日期?【英文标题】:How to convert timestamp to date in Presto? 【发布时间】:2018-04-03 20:29:33 【问题描述】:我喜欢将我的时间戳列转换为日期和时间格式。我应该如何从 presto 编写查询?我的时间戳是UTC时间。非常感谢
Timestamp format"1506929478589"
After query convert it looks like "2016-10-25 21:04:08.436"
【问题讨论】:
【参考方案1】:您可以使用cast(col as date)
或date(col)
将timestamp
转换为date
。
【讨论】:
【参考方案2】:您可以使用 date_format 函数(此处的文档:https://prestodb.io/docs/current/functions/datetime.html)
这是一个例子:
date_format(charges.created, '%Y-%m') as rev_month
如果由于某种原因您在比较日期时不需要进行这样的转换,您可以执行以下操作
where customers.created BETWEEN timestamp '2018-04-01 00:00:00.000' AND timestamp '2018-05-01 00:00:00.000'
【讨论】:
以上是关于如何在 Presto 中将时间戳转换为日期?的主要内容,如果未能解决你的问题,请参考以下文章
如何将表示 EPOCH 时间的整数转换为 Athena (Presto) 中的时间戳?