欢迎来到代码驿站!

PostgreSQL

当前位置:首页 > 数据库 > PostgreSQL

PGSQL 实现查询今天,昨天的数据,一个月之内的数据

时间:2021-05-18 09:47:42|栏目:PostgreSQL|点击:

PGSQL查询今天的数据

select *
 from 表名 as n
 where n.create_date>=current_date;

PG查询昨天的数据

方法1:

 select *
 from 表名 as n
 where
    age(
    current_date,to_timestamp(substring(to_char(n.create_date, 'yyyy-MM-dd hh24 : MI : ss' ) FROM 1 FOR 10),'yyyy-MM-dd')) ='1 days';

方法2:

select *
 from 表名 as n
 where n.create_date>=current_date-1 and n.create_date <current_date;

n.create_date 是一个timestamp的数据;

current_date是pgsql数据一个获取当前日期的字段;

to_char(timestamp,text)把timestamp数据转换成字符串;

substring(text from int for int) 截取想要的文本格式 ‘yyyy-MM-dd';

to_timestamp(text,'yyyy-MM-dd')转换成timestamp格式;

age(timestamp,timestamp)获取两个时间之差 返回 days

PG查询最近一个月内的数据

select *
 from 表名 as n
 and n.create_date>=to_timestamp(substring(to_char(now(),'yyyy-MM-dd hh24:MI:ss') FROM 1 FOR 10),'yyyy-MM-dd')- interval '30 day';

补充:postgresql 查询当前时间

需求:PostgreSQL中有四种获取当前时间的方式。

解决方案:

1.now()

返回值:当前年月日、时分秒,且秒保留6位小数。

2.current_timestamp

返回值:当前年月日、时分秒,且秒保留6位小数。(同上)

申明:now和current_timestamp几乎没区别,返回值相同,建议用now。

3.current_time

返回值:时分秒,秒最高精确到6位

4.current_date

返回值:年月日

上一篇:浅谈PostgreSQL的客户端认证pg_hba.conf

栏    目:PostgreSQL

下一篇:解决sqoop从postgresql拉数据,报错TCP/IP连接的问题

本文标题:PGSQL 实现查询今天,昨天的数据,一个月之内的数据

本文地址:http://www.codeinn.net/misctech/123992.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有