I want to select all rows where the value of the updated_on field is older than 60 seconds.
I do this:
SELECT * FROM processes WHERE updated_on < DATE_SUB(NOW(), INTERVAL 60 SECOND)
However, i get an empty result.
For example, there is a row which has "2014-04-15 10:43:22" as the updated_on value (a timestamp field).
What is wrong?