主页 > 知识库 > PGSQL 实现查询今天,昨天的数据,一个月之内的数据

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

热门标签:铁路电话系统 Linux服务器 地方门户网站 网站排名优化 AI电销 呼叫中心市场需求 百度竞价排名 服务外包

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

返回值:年月日

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。如有错误或未考虑完全的地方,望不吝赐教。

您可能感兴趣的文章:
  • pgsql 变量赋值方法及注意事项
  • pgsql 实现分页查询方式
  • Postgresql 存储过程(plpgsql)两层for循环的操作
  • pgsql之create user与create role的区别介绍
  • pgsql之pg_stat_replication的使用详解
  • pgsql 如何删除仍有活动链接的数据库
  • pgsql 解决包含有单引号的字符串操作

标签:崇左 仙桃 兰州 衡水 黄山 铜川 湖南 湘潭

巨人网络通讯声明:本文标题《PGSQL 实现查询今天,昨天的数据,一个月之内的数据》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266