gpt4 book ai didi

sql - 从 Now() 到 Postgresql 中的 Current_timestamp

转载 作者:行者123 更新时间:2023-11-29 11:05:25 24 4
gpt4 key购买 nike

在 mysql 中我可以这样做:

SELECT *
FROM table
WHERE auth_user.lastactivity > NOW() - 100

现在在 postgresql 中我正在使用这个查询:

SELECT *
FROM table
WHERE auth_user.lastactivity > CURRENT_TIMESTAMP - 100

但是我得到这个错误:

operator does not exist: timestamp with time zone - integer

我该如何解决?

最佳答案

使用区间而不是整数:

SELECT *
FROM table
WHERE auth_user.lastactivity > CURRENT_TIMESTAMP - INTERVAL '100 days'

关于sql - 从 Now() 到 Postgresql 中的 Current_timestamp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2993468/

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