sql >> Base de Datos >  >> RDS >> PostgreSQL

Desde Now() hasta Current_timestamp en Postgresql

Utilice un intervalo en lugar de un número entero:

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