I'm trying to compare a character varying with a timestamp in postgresSQL.
I want to get all the values that are before current time compared to the character varying timestamp.
Would this compare correctly?
WHERE to_timestamp('2018-12-25T06:00:00+01:00', 'YYYY-MM-DD HH24:MI:SS') < now()
Not exactly. There are timezone values in the literals which should be parsed. Compare: