MySQL :: MySQL 8.4 Reference Manual :: 27.4.3 Event Syntax (original) (raw)
The world's most popular open source database
Contact MySQL |
Login | Register
Developer Zone Downloads MySQL.com
- MySQL Server
- MySQL Enterprise
- Workbench
- InnoDB Cluster
- MySQL NDB Cluster
- Connectors
- More
- MySQL.com
- Downloads
- Developer Zone
Section Menu:
MySQL 8.4 Reference Manual
- Preface and Legal Notices
- General Information
- Installing MySQL
- Upgrading MySQL
- Downgrading MySQL
- Tutorial
- MySQL Programs
- MySQL Server Administration
- Security
- Backup and Recovery
- Optimization
- Language Structure
- Character Sets, Collations, Unicode
- Data Types
- Functions and Operators
- SQL Statements
- MySQL Data Dictionary
- The InnoDB Storage Engine
- Alternative Storage Engines
- Replication
- Group Replication
- MySQL Shell
- Using MySQL as a Document Store
- InnoDB Cluster
- InnoDB ReplicaSet
- MySQL NDB Cluster 8.4
- Partitioning
- Stored Objects
- Defining Stored Programs
- Using Stored Routines
* Stored Routine Syntax
* Stored Routines and MySQL Privileges
* Stored Routine Metadata
* Stored Procedures, Functions, Triggers, and LAST_INSERT_ID() - Using Triggers
* Trigger Syntax and Examples
* Trigger Metadata - Using the Event Scheduler
* Event Scheduler Overview
* Event Scheduler Configuration
* Event Syntax
* Event Metadata
* Event Scheduler Status
* The Event Scheduler and MySQL Privileges - Using Views
* View Syntax
* View Processing Algorithms
* Updatable and Insertable Views
* The View WITH CHECK OPTION Clause
* View Metadata - Stored Object Access Control
- Stored Program Binary Logging
- Restrictions on Stored Programs
- Restrictions on Views
- INFORMATION_SCHEMA Tables
- MySQL Performance Schema
- MySQL sys Schema
- Connectors and APIs
- MySQL Enterprise Edition
- MySQL Workbench
- MySQL on OCI Marketplace
- Telemetry
- MySQL 8.4 Frequently Asked Questions
- Error Messages and Common Problems
- Indexes
- MySQL Glossary
Related Documentation
Download this Manual
PDF (US Ltr) - 40.1Mb
PDF (A4) - 40.2Mb
Man Pages (TGZ) - 259.4Kb
Man Pages (Zip) - 366.6Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb
version 8.4
MySQL 8.4 Reference Manual / ... / Stored Objects / Using the Event Scheduler / Event Syntax
27.4.3 Event Syntax
MySQL provides several SQL statements for working with scheduled events:
- New events are defined using the CREATE EVENT statement. See Section 15.1.13, “CREATE EVENT Statement”.
- The definition of an existing event can be changed by means of the ALTER EVENT statement. SeeSection 15.1.3, “ALTER EVENT Statement”.
- When a scheduled event is no longer wanted or needed, it can be deleted from the server by its definer using theDROP EVENT statement. SeeSection 15.1.25, “DROP EVENT Statement”. Whether an event persists past the end of its schedule also depends on its
ON COMPLETION
clause, if it has one. SeeSection 15.1.13, “CREATE EVENT Statement”.
An event can be dropped by any user having theEVENT privilege for the database on which the event is defined. SeeSection 27.4.6, “The Event Scheduler and MySQL Privileges”.
Related Documentation
Download this Manual
PDF (US Ltr) - 40.1Mb
PDF (A4) - 40.2Mb
Man Pages (TGZ) - 259.4Kb
Man Pages (Zip) - 366.6Kb
Info (Gzip) - 4.0Mb
Info (Zip) - 4.0Mb