I created an event in MYSQL with schedule date. For example the event fire on current month first date.
Am using the below query to select the current month first date
select CAST(DATE_FORMAT(NOW(),'%Y-%m-01') as DATE)
My doubt is how many time the event fire on that date.
you can analyze your query using
EXPLAINalternative:
if you want to find first day of current month then you can can create a custom function
Reference
and then call