Your expression should look like this:
SELECT * FROM table WHERE date_column + INTERVAL 1 MONTH >= NOW()
You add 1 (or 2) month to the date of the column in which the date is stored, and compare it with the current time "NOW" ().
This works with the DATE, DATETIME and TIMESTAMP columns.
source
share