I have a table with schema as follows:
mysql> desc a;
  +---------------+------------------+------+-----+---------+----------------+
| Field         | Type             | Null | Key | Default | Extra          |
+---------------+------------------+------+-----+---------+----------------+
| id            | int(11) unsigned | NO   | PRI | NULL    | auto_increment |
| created_at    | int(11)          | YES  |     | NULL    |                |
| updated_at    | int(11)          | YES  |     | NULL    |                |
In updated_at I capture timestamp.
Now I would like to fetch all rows with updated_at < NOW() - INTERVAL 1 DAY.
To do this, I have written following query taking idea from Fetching rows added last hour:
mysql> select count(*) from a where DATE(updated_at) < DATE_SUB(NOW(),INTERVAL 1 DAY);
+----------+
| count(*) |
+----------+
|        0 |
+----------+
Though there are many rows with updated at with 2 years old timestamp, I am getting 0 here.
 
    