How do I query a mysql db to return all records with a datetime older than 1 week ago. Note that the datetime table stores everything in UTC, and I should be comparing it in
SELECT * FROM table WHERE DATEDIFF(NOW(),colname) > 7;