I create a test procedure.
CREATE PROCEDURE Daily_Insertion1() BEGIN insert into deliverability.test_month (type,from_sale) select type,from_sale from deliverability.delivery_money_repo where total = 289001; END And the event
CREATE EVENT myevent1 ON SCHEDULE EVERY 1 DAY STARTS '2017-02-22 11:14:00' DO CALL Daily_Insertion1 Installed soon to test performance. Didn't work, what did you do wrong?