MySQL開啟事件

2021-10-25 19:54:44 字數 474 閱讀 9931

-- 為了節省除錯事件相關問題的時間,請記住,必須開啟全域性事件處理程式來處理事件。

-- 檢視全域性事件是否開啟

show variables where variable_name='event_scheduler';

-- 開啟事件功能

set global event_scheduler=1;

drop event if exists event_01;

create event event_01

on schedule every 1 minute

on completion preserve

do delete from `dbmjpms`.`table_01`

where datediff(now(), time) > 90;

show events;

select * from table_01

MySQL開啟事務

什麼是事務?事務是邏輯上的一組操作,組成這組操作的各個單元,要不全都成功要不全都失敗,這個特性就是事務 注意 mysql資料支援事務,但是要求必須是innodb儲存引擎 解決這個問題 mysql的事務解決這個問題,因為mysql的事務特性,要求這組操作,要不全都成功,要不全都失敗,這樣就避免了某個操...

go 連線 mysql 開啟事務

資料庫 create database customer 建立資料庫 use customer 使用資料庫 create table customer id int primary key auto increment name varchar 11 varchar 4 age int phone ...

MySQL 開啟事件 使用定時器呼叫儲存過程

mysql定時器是系統給提供了event,而oracle裡面的定時器是系統給提供的job。廢話少說,下面建立表 create table mytable id int auto increment not null,name varchar 100 not null default introduc...