gpt4 book ai didi

sql - 我如何获得 7 天前的日期?

转载 作者:行者123 更新时间:2023-12-04 15:39:10 28 4
gpt4 key购买 nike

我想制作一个图表,提供上周的数据。

我尝试使用此代码,但它出错了。

where (time_stamp::date > dateadd(day, -7, now()::date))

我也试过
(ud.time_stamp::date between now() and dateadd(day, -7, now()::date))

它给了我这个错误

Error running query: Specified types or functions (one per INFO message) not supported on Redshift tables.

最佳答案

在 Redshift 中,我会这样写:

where time_stamp >= current_date - interval '6 day'

我怀疑 time_stamp可能用于分区,并且您要小心涉及其上的函数的比较。

关于sql - 我如何获得 7 天前的日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58601054/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com