过滤10分钟之前的数据

时间:2018-09-26 08:14:06

标签: postgresql timestamp

在MySQL中,我可以使用:

select * 
from mytable 
where created_at < DATE_SUB(NOW(), INTERVAL 1 MINUTE)

过滤少于10分钟。

如何在PostgreSQL中做到这一点?以样式“ 2018-09-27 12:11:32”创建。

1 个答案:

答案 0 :(得分:1)

select * 
from mytable 
where created_at < now()::timestamp - INTERVAL '10 min'