I want to execute a query at a specific time. In MySQL we use events for that, example is as follows: CREATE EVENT myevent ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR DO UPDATE …
I want to execute a query at a specific time. In MySQL we use events for that, example is as follows: CREATE EVENT myevent ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR DO UPDATE …