gpt4 book ai didi

sql - PostgreSQL如何获取从当前时间起30秒后createdAt或updatedAt的数据

转载 作者:搜寻专家 更新时间:2023-10-30 20:16:25 26 4
gpt4 key购买 nike

我正在尝试从当前时间 30 秒后创建或更新数据的表中访问数据。有没有人知道如何有效地做到这一点?我在 npm 中使用 node.js 和 pg 包。我想抓取新创建/更新的数据与 elasticsearch 同步。

最佳答案

正好 30 秒前创建的行:

select *
from the_table
where createdat = current_timestamp - interval '30' second

从 30 秒前到现在创建的行:

select *
from the_table
where createdat >= current_timestamp - interval '30' second

关于sql - PostgreSQL如何获取从当前时间起30秒后createdAt或updatedAt的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37621879/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com