I am using mysql workbench6.3.7. I used event scheduler to execute the query everyday morning 9 o'clock I have used the following query
delimiter $$
create event eventtable
on schedule every '1' day
starts '2016-11-25 16:00:00'
do
begin
<statement>
end;
$$;
but it's working only one day it's not working daily.What am I missing??.Should i have to execute the query daily? Should I have to on the global scheduler daily? Please help me with this.
Thank you,
Jen
delimiter $$
create event eventtable
on schedule every '1' day
starts '2016-11-25 16:00:00'
do
begin
<statement>
end;
$$;
but it's working only one day it's not working daily.What am I missing??.Should i have to execute the query daily? Should I have to on the global scheduler daily? Please help me with this.
Thank you,
Jen