I want to select all the records in a table where their date of entry is older then 2 months.
Any idea how I can do that?
I haven\'t tried anything yet but I
SELECT COUNT(1) FROM FB WHERE Dte > DATE_SUB(now(), INTERVAL 2 MONTH)