最佳答案
在 mysql 中,我可以这样做:
SELECT *
FROM table
WHERE auth_user.lastactivity > NOW() - 100
现在在 postgreql 中,我使用这个查询:
SELECT *
FROM table
WHERE auth_user.lastactivity > CURRENT_TIMESTAMP - 100
but I get this error:
operator does not exist: timestamp with time zone - integer
我该怎么解决?