如何使用 where < current_date sql?
Posted
技术标签:
【中文标题】如何使用 where < current_date sql?【英文标题】:How to use where < current_date sql? 【发布时间】:2016-05-12 08:24:47 【问题描述】:我们想在我们的 PostgresSQL 数据库上运行一个查询。
Select (*)
Where
domain.blabla.date > 'yesterday'
AND
domain.blabla.date < 'current_date'
目标是只获取昨天的数据。
我们得到的错误如下:
[Err] 错误:不再支持日期/时间值“当前”
你有办法解决它吗?
非常感谢!
卢卡
【问题讨论】:
【参考方案1】:对于The goal is to get only yesterday's data
:
Select (*)
from domain.blabla
Where date_trunc('day', date) = date_trunc('day', current_date - 1);
【讨论】:
【参考方案2】:对于 SQL 中的当前日期,您可以使用
SELECT CONVERT(date, getdate())
您可以使用 SQL 中的昨天日期
SELECT dateadd(day,datediff(day,1,GETDATE()),0)
【讨论】:
【参考方案3】:此查询将仅获取昨天的值
select * from table_name where day > current_date- interval '1 day'
或使用yesterday
select * from table_name where day > current_date 'yesterday'
SQLFiddle
有关更多信息,请参阅PostgreSQL Date/Time Documentation
P.S - 您不必将函数放在单引号 ' '
【讨论】:
> current_date 'yesterday'
给了我语法错误(即使在链接的 sqlfiddle 中),但 > date 'yesterday'
刚刚工作。以上是关于如何使用 where < current_date sql?的主要内容,如果未能解决你的问题,请参考以下文章
使用 current_date::date 而不是硬编码日期的 Postgres 查询非常慢
Amazon Redshift - 在 where 条件下的变量
如何使用列时间戳默认 current_date 创建 mysql 表?