3
I’m learning now about create Event in mysql
I’m creating a simple test Event, but it’s not working, it appears in Events, but the table is not updated:
CREATE EVENT teste
ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 10 SECOND
DO
UPDATE euk_teste SET status=2 WHERE id_produto=1;
Is something missing? Need to enable something?