要檢視當前是否已開啟事件排程器
show variables like 'event_scheduler';
開啟事件檢視器
set global event_scheduler = 1;
建立事件
語法:create event [if not exists] event_name
on schedule schedule
[on completion [not] preserve]
[enable | disable]
[comment 'comment']
do sql_statement;
例項:create event updateinfostatus
on schedule every 30 minute
doupdate `jd_article` set `status` = 0 where `status` = 1 and `date` <= now( );
修改事件
語法:alter event event_name
[on schedule schedule]
[rename to new_event_name]
[on completion [not] preserve]
[comment 'comment']
[enable | disable]
[do sql_statement]
例項:alter event updateinfostatus
on schedule every 30 minute
doupdate `jd_article` set `status` = 0 where `status` = 1 and `date` <= now( );
刪除事件
drop events if exists updateinfostatus
臨時關閉事件
alter events updateinfostatus disable
開啟事件
alter events updateinfostatus enable
檢視事件詳細資訊
select * from information_schema.events where event_name = 'updateinfostatus' and event_schema = 'jdwc'
檢視所有事件
show events
檢視事件建立資訊
show create event updateinfostatus
作者 zhou hr
關於找一找教程網
[mysql事件檢視器使用介紹]
檔案檢視器
上節課中學習了如何載入乙個網路,這節課接著上節課的 來寫乙個引導程式。首先,可以重用上節課中的載入的 新新增的東西就是,乙個button,乙個text文字標籤,乙個filedialog檔案對話方塊。具體 如下 import qtquick 2.2 import qtquick.window 2.1 ...
檔案檢視器
linux上的檔案操作是真的不會,c語言裡靜態變數的用法也不清楚,全是參考學長的部落格,學到了好多 include include include include include define maxsize 100 using namespace std void showdirstructure...
事件檢視器使用分析
如果你已經用上了windows xp,那麼是否意識到不管你是否願意,作業系統每天都在後台默默無聞地記錄下所有的一舉一動,相當於忠實的史官 鐵筆寫春秋 這就是可以在 控制面板 管理工具 中找到的 事件檢視器 通過它可以了解系統的喜怒哀樂和一言一行,雖然都是一些流水賬,但我們既可以從中品嚐到成功的喜悅,...