Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

comparando datas por mês e ano no mysql

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