小编典典

如何在postgres中选择日期范围?

sql

我在postgres数据库中有一个时间戳字段。我想选择上个月内发生的所有日期。因此,类似于从表中选择 ,其中timestamp>(当前时间戳-1个月)。


阅读 250

收藏
2021-03-23

共1个答案

小编典典

select * from table where timestamp > now() - interval '1 month'
2021-03-23