I'm trying to pull results from a table that have been inserted today. Each insert is marked with a timestamp.
If I do a query like:
SELECT *
FROM table
WHERE added > DATE_SUB(NOW(), INTERVAL 1 DAY)
It seems I get stuff that did fall on today's date, but also stuff from 24 hours ago. maybe I'm seeing things.
I don't want to see stuff from 24 hours ago...