I am trying to do this:
WHERE dateadded < TODAY - 2 days
What is the correct MySQL syntax for this?
I am trying to do this:
WHERE dateadded < TODAY - 2 days
What is the correct MySQL syntax for this?
http://www.w3schools.com/sql/func_datediff_mysql.asp
WHERE DATEDIFF(CURDATE(), dateadded) > 2