I wrote a query in MySQL which I want to run daily on our wordpress server. Using Cronjobs gave me a lot of collate errors, so I took the easier rout with the Event Scheduler which is easier to implement via phpMyAdmin.
Now I would like to run the query only at specific times: Once per hour, between 8 am and 5 pm.
Is this possible using Event Scheduler? I know of:
STARTS = ...
ENDS = ...
But as far as I know, that only sets global values (start and end once). Is there any possibility to set a recurring daily end? Or do I have to use cron for that?