A brief discussion on MySQL event planning tasks

A brief discussion on MySQL event planning tasks

1. Check whether event is enabled

show variables like '%sche%';
set global event_scheduler =1;

two,

-- Set the time zone and set the event scheduler to ON, or event_scheduler = ON
set time_zone = '+8:00';
set GLOBAL event_scheduler = 1;

-- Set the database base database used or to which this event belongs
use test;

-- If there is a task plan with this name, delete it first
drop event if exist test_update;

-- Set the delimiter to '$$'. The default statement delimiter for MySQL is ';'. This way, the subsequent create to end code will be treated as a single statement for execution.
DELIMITER $$

-- Create a scheduled task, set the first execution time to '2012-11-15 10:00:00', and execute it once a day

-- on schedule every 30 seconds
-- on schedule every day starts timestamp '2012-11-15 10:00:00'

create event test_update
on schedule every day starts timestamp '2012-11-15 10:00:00'
do

-- Start the task to do
begin

-----------------------------------
-- do something Write what your cron job is going to do
-----------------------------------

-- End the scheduled task
end $$

-- Set the statement separator back to ';'
DELIMITER ;

The above is all I have to say about MySQL event planning. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • MySQL Scheduled Tasks (Event Scheduler) Event Scheduler Introduction
  • MySQL scheduled script execution (scheduled task) command example
  • Commonplace talk about MySQL event scheduler (must read)
  • Detailed explanation of creating scheduled tasks with MySQL Event Scheduler
  • Introduction to using MySQL event scheduler
  • MySQL Event Scheduler
  • Use MySQL event scheduler to delete binlog regularly
  • Basic Learning Tutorial on Event Scheduling in MySQL
  • Analysis of MySQL's planned tasks and event scheduling examples

<<:  A set of code based on Vue-cli supports multiple projects

>>:  Practical example of Vue virtual list

Recommend

How to run top command in batch mode

top command is the best command that everyone is ...

Detailed explanation of MySQL's MERGE storage engine

The MERGE storage engine treats a group of MyISAM...

Web page creation for beginners: Learn to use HTML's hyperlink A tag

The hyperlink a tag represents a link point and i...

Learn more about using regular expressions in JavaScript

Table of contents 1. What is a regular expression...

How to set up URL link in Nginx server

For websites with an architecture like LNMP, they...

VMware Workstation Installation (Linux Kernel) Kylin Graphic Tutorial

This article shares with you how to install Kylin...

js realizes the image cutting function

This article example shares the specific code of ...

How to write object and param to play flash in firefox

Copy code The code is as follows: <object clas...

javascript to switch pictures by clicking a button

This article example shares the specific code of ...

The perfect solution for Vue routing fallback (vue-route-manager)

Table of contents Routing Manager background gett...

In-depth explanation of iterators in ECMAScript

Table of contents Preface Earlier iterations Iter...

Introduction to JavaScript built-in objects

Table of contents 1. Built-in objects 2. Math Obj...

Graphical introduction to the difference between := and = in MySQL

The difference between := and = = Only when setti...