By default, scheduled events in MySQL are dropped from the system once they expire. That means that if the event’s schedule has completed, then the event is dropped.
But we can override this behaviour with the ON COMPLETION
clause. Specifically we can specify ON COMPLETION PRESERVE
to keep the event in the system after it has expired. By default, events have ON COMPLETION NOT PRESERVE
added to their definition, which means they are dropped as soon as they expire. Using ON COMPLETION PRESERVE
changes this so that they aren’t dropped when they expire.