postgresql如何按照指定日期查询7天之前数据

1.select * from 表名 where fdate=to_date(‘2020-06-20’,‘yyyy-MM-dd’) - INTERVAL ‘6 day’;
2.select * from report where fdate=to_char(to_date(‘2020-06-20’,‘yyyy-mm-dd’) - INTERVAL ‘1d’,‘yyyy-mm-dd’)

你可能感兴趣的:(postgresql如何按照指定日期查询7天之前数据)