sql >> Base de Datos >  >> RDS >> Mysql

comparar fechas por mes y año en mysql

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