如何在 Presto SQL 中将 unix 时间戳转换为日期并从中提取月份

How to cast unix timestamp as date and extract month from it in Presto SQL

我有以下查询:

    select cast(ov.ingestion_timestamp as date), date(ov.date_id), cast(ov.main_category as varchar), 
    sum(cast(ov.order_target as int)),
    sum(cast(ov.gmv_target as int))
    from tableA ov 
    inner join tableB cb
    on date(ov.date_id) = date(cb.ingestion_timestamp)
    inner join tableC loc  
    on date(ov.date_id) = date(loc.ingestion_timestamp)
    where MONTH(date(ov.ingestion_timestamp)) = month(current_date)
group by 1,2,3

我想获取 ingestion_timestamp 列的月份等于当前月份的记录。所有列值都存储为对象,因此我需要转换为它们各自的数据类型。我可以知道如何检索 ingestion_timestamp 列 的 月份吗?[=​​13=]

谢谢。

我建议不要在 where 子句中 casting:这是低效的,因为该函数需要在过滤前应用于每一行。

相反,您可以计算对应于月初的时间戳,是否用于直接过滤:

where ingestion_timestamp >= to_unixtime(date_trunc(month, current_date))

如果您有未来的日期,您可以添加上限

where 
    ingestion_timestamp >= to_unixtime(date_trunc(month, current_date))
    and ingestion_timestam < to_unixtime(date_trunc(month, current_date) + interval '1' month)