I need to get rows from the database where the records are of one month. I tried this SELECT:
$result = mysql_query(\"SELECT * FROM my_table WHERE DATEPART(\
If your DATEPART is not working in MYSQL then you can use:
SELECT * FROM MyTable WHERE MONTH(joinningDate)=MONTH(NOW())-1 and YEAR(joinningDate)=YEAR(NOW());
It will return all records who have inserted in MyTable in last month.