Hi I need help with a database MySQL query.
What where clause can I use to select records that are one hour ago or fresher using a DATETIME timestamp?
DATETIME
Something like this? I assume an DATETIME timestamp is an DATETIME field.
DATETIME timestamp
SELECT * FROM table WHERE datetimefield >= DATE_SUB(NOW(), INTERVAL 1 HOUR)
For more information check MySQL's date/time functions.