MySQL date addition 2011-12-23 10:06am
Here is an example of doing date addition/subtraction in a MySQL query.
SELECT * FROM Table WHERE DateField > (now() - INTERVAL 1 year)
Here is an example of doing date addition/subtraction in a MySQL query.
SELECT * FROM Table WHERE DateField > (now() - INTERVAL 1 year)