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

query mysql per selezionare tutte le righe del mese corrente?

select * from your_table
where year(curdate()) = year(startdate)
and month(curdate()) = month(startdate)