Pgsql 根据当前时间查询前三天的数据

pgsql像mysql一样支持一些时间函数;

current_timestamp时间函数的作用和now相同;

 1. select current_timestamp; 当前时间+精度+时区
 2. 输出为 : 2021-01-29 14:24:49.895409+08
 1. select current_timestamp(0)::TIMESTAMP(0); 去掉了精度+时区 
 2. 输出为 :2021-01-29 14:28:20

通过区间查询字段来实现查询从当前时间前三天的数据(今天+昨天+前天),可以修改’3 day’的值来查询所需时间值;

from 表名 o where billing_date between (SELECT current_timestamp - interval '3 day') and current_timestamp
    原文作者:邓县胡歌
    原文地址: https://blog.csdn.net/Healer_Me/article/details/113386144
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞