PostgreSQL时间段查询

Posted 创可贴Y

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PostgreSQL时间段查询相关的知识,希望对你有一定的参考价值。

1.今日

select *  from "表名" 
where to_date("时间字段"::text,‘yyyy-mm-dd‘)=current_date

2.昨日

select *  from "表名" 
where to_date("时间字段"::text,‘yyyy-mm-dd‘)=current_date - 1

3.最近半个月

select *  from "表名" 
where to_date("时间字段"::text,‘yyyy-mm-dd‘) BETWEEN current_date - interval ‘15 day‘  AND current_date

4.最近6个月

select *  from "表名" 
where to_date("时间字段"::text,‘yyyy-mm-dd‘) BETWEEN current_date - (‘6month ‘ || extract(day from CURRENT_DATE) -1 || ‘ day‘)::interval  AND current_date

说明:

extract(day from CURRENT_DATE) 提取当前时间的天数,因为查询最近六个月,比如现在2018年11月14日,查询的时间区间是
2018年5月1日 - 2018年11月14日 

当前时间减去6个月和13天,得到2018年5月1日(如果减去14天得到的是2018年4月30日)
select current_date - (‘6 month ‘ || extract(day from CURRENT_DATE) -1 || ‘ day‘)::interval as beginMonth ;

 查询结果:2018-05-01 00:00:00

 

以上是关于PostgreSQL时间段查询的主要内容,如果未能解决你的问题,请参考以下文章

Java,PostgreSQL时间范围查询

非字母数字的 PostgreSQL 查询

PostgreSQL代码分析,查询优化部分,process_duplicate_ors

你如何在 python 中处理 graphql 查询和片段?

postgresql 查询结果使用 where 条件另一个查询

postgresql 查询中的大结果集