如何在PostgreSQL中迁移“自时间戳记”查询

时间:2018-11-27 09:43:37

标签: postgresql postgresql-9.5 temporal-tables

我想迁移或编写等效查询以在PostgreSQL当前时间之前一小时从表中获取数据。

oracle查询:

select * 
from T_DATA as of timestamp (systimestamp - interval '60' minute);

2 个答案:

答案 0 :(得分:0)

select * from T_DATA where timestamp_column >= now() - interval '1 hour'

答案 1 :(得分:0)

由于Postgresql不支持闪回查询,因此我尝试了时态表扩展的一种方法。