Home  >  Article  >  Database  >  How can we rename existing MySQL events?

How can we rename existing MySQL events?

王林
王林forward
2023-08-29 18:09:071035browse

我们如何重命名现有的 MySQL 事件?

By using the ALTER EVENT statement and the RENAME keyword, we can rename an existing event. To illustrate this, we have the following example where we rename the event 'Hello' to 'Hello_renamed' -

Example

mysql> ALTER EVENT Hello RENAME TO Hello_renamed;
Query OK, 0 rows affected (0.00 sec)

To confirm that the event has been renamed, we can try using Old name deletion event, MySQL will throw the following error −

mysql> DROP EVENT hello;
ERROR 1539 (HY000): Unknown event 'hello'

The above is the detailed content of How can we rename existing MySQL events?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete