I have the following query in Postgres:
SELECT * FROM users WHERE registration = last_login;
Both registration and last_login are timestamps. The problem I have is that those two values are written with some tiny difference, but they are not exact. Is there any way I can compare those two dates with a margin of, say, 1 second?