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