Mysql
 sql >> Database >  >> RDS >> Mysql

confrontando le date per mese e anno in mysql

select * from your_table
where year(Start_Date) = year(curdate())
and month(Start_Date) = month(curdate())
and end_date <= curdate() + interval 30 day