简体   繁体   中英

3 Months previous data by given date mysql

I have fee records in my database table. I want to fetch 3 months back records of the fees in database. I am using:

SELECT * FROM fee_challans
    WHERE student_id = 630
    AND STATUS =  'un-paid'
    AND DATE_FORMAT( fee_date,  '%Y-%m-%d' ) - INTERVAL 2 MONTH 

This query that I searched and found on google.

You forgot to compare your column to something...

SELECT * FROM fee_challans
    WHERE student_id = 630
    AND STATUS =  'un-paid'
    AND fee_date >= CURDATE() - INTERVAL 3 MONTH;

And if your fee_date column is of type date , datetime or timestamp , date_format() is not necessary.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM