在 Athena 中是不是有任何函数可以使 date 减去 bigint 类型?

Posted

技术标签:

【中文标题】在 Athena 中是不是有任何函数可以使 date 减去 bigint 类型?【英文标题】:Is there any function could make date minus bigint type in Athena?在 Athena 中是否有任何函数可以使 date 减去 bigint 类型? 【发布时间】:2021-03-15 04:33:54 【问题描述】:

选择 user_id,first_event_date,(date(max(event_date)) - rnk) date_on 从 (select event_date,user_id,first_event_date,row_number() over(partition by user_id order by first_event_date desc) rnk 来自保留用户选择) GROUP BY user_id, first_event_date enter image description here

这将显示错误:'-' 不能应用于日期,bigint

【问题讨论】:

【参考方案1】:

尝试使用间隔:

date(max(event_date)) - rnk * interval '1 day'

【讨论】:

以上是关于在 Athena 中是不是有任何函数可以使 date 减去 bigint 类型?的主要内容,如果未能解决你的问题,请参考以下文章

AWS Athena 可以更新或插入存储在 S3 中的数据吗?

Athena Query - “NOT IN” 性能缓慢

Athena - 改变表级联

Athena (Presto) SQL 窗口函数

Athena/Presto Escape 下划线

“$path”是不是限制 Athena 扫描的数据量?