I
I
Ivan2020-05-29 23:58:16
MySQL
Ivan, 2020-05-29 23:58:16

How many EVENT events can be created in MySQL?

How many EVENT events can be created in MySQL? I did not find this information in the documentation.

I plan to create a lot of the same type of events like this:

CREATE EVENT $event_name 
ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL $bs_time MINUTE
DO
UPDATE " . PREFIX . "_users
SET `status` = 'wait', `time` = '$add_time'
WHERE `id` = '$id'


Events have terms from 1 to 15 days and there can be hundreds or even thousands of them.

After triggering, EVENT is deleted.

I want to understand how this affects performance, maybe there are limitations?

Thank you!

Answer the question

In order to leave comments, you need to log in

1 answer(s)
L
Lazy @BojackHorseman MySQL, 2020-05-30
@9StarRu

there are no restrictions on the number of Stored Programms (procedures, functions, triggers, events).
as long as there is free space under the system tables, you can create

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question