having a current date as 2011/12/05 .. , how to get a date extract one month back ? 2011/11/05 ? in MYsql?
2011/12/05
2011/11/05
You also can use
SELECT * FROM tableName WHERE createdDate >= (now() - INTERVAL 1 MONTH);
if you're looking for everything created in the last month.