mysql get last 2 month data

Solutions on MaxInterview for mysql get last 2 month data by the best coders in the world

showing results for - "mysql get last 2 month data"
Bianca
11 Oct 2016
1SELECT * FROM d_jobs WHERE  `job_date` >= last_day(now()) + interval 1 day - interval 3 month;