您好,登錄后才能下訂單哦!
這篇文章主要講解了“MySQL數(shù)據(jù)庫觸發(fā)器trigger怎么使用”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“MySQL數(shù)據(jù)庫觸發(fā)器trigger怎么使用”吧!
觸發(fā)器是一種特殊類型的存儲(chǔ)過程,觸發(fā)器通過事件進(jìn)行觸發(fā)而被執(zhí)行
觸發(fā)器 trigger 和js事件類似
寫入數(shù)據(jù)表前,強(qiáng)制檢驗(yàn)或轉(zhuǎn)換數(shù)據(jù)(保證數(shù)據(jù)安全)
觸發(fā)器發(fā)生錯(cuò)誤時(shí),異動(dòng)的結(jié)果會(huì)被撤銷(事務(wù)安全)
部分?jǐn)?shù)據(jù)庫管理系統(tǒng)可以針對(duì)數(shù)據(jù)定義語言DDL使用觸發(fā)器,稱為DDL觸發(fā)器
可以依照特定的情況,替換異動(dòng)的指令 instead of(mysql不支持)
觸發(fā)器可通過數(shù)據(jù)庫中的相關(guān)表實(shí)現(xiàn)級(jí)聯(lián)更改(如果一張表的數(shù)據(jù)改變,可以利用觸發(fā)器實(shí)現(xiàn)對(duì)其他表的操作,用戶不知道)
保證數(shù)據(jù)安全,進(jìn)行安全校驗(yàn)
對(duì)觸發(fā)器過分依賴,勢(shì)必影響數(shù)據(jù)庫的結(jié)構(gòu),同時(shí)增加了維護(hù)的復(fù)雜度
造成數(shù)據(jù)在程序?qū)用娌豢煽?/p>
create trigger 觸發(fā)器名字 觸發(fā)時(shí)機(jī) 觸發(fā)事件 on 表 for each row begin end
on 表 for each row
觸發(fā)器綁定表中所有行,沒一行發(fā)生指定改變的時(shí)候,就會(huì)觸發(fā)觸發(fā)器
每張表對(duì)應(yīng)的行都有不同的狀態(tài),當(dāng)SQL指令發(fā)生的時(shí)候,都會(huì)令行中數(shù)據(jù)發(fā)生改變,每一行總會(huì)有兩種狀態(tài):數(shù)據(jù)操作前和數(shù)據(jù)操作后
before: 數(shù)據(jù)發(fā)生改變前的狀態(tài)
after: 數(shù)據(jù)已經(jīng)發(fā)生改變后的狀態(tài)
mysql中觸發(fā)器針對(duì)的目標(biāo)是數(shù)據(jù)發(fā)生改變,對(duì)應(yīng)的操作只有寫操作(增刪改)
inert 插入操作
update 更新操作
delete 刪除操作
一張表中,每一個(gè)觸發(fā)時(shí)機(jī)綁定的觸發(fā)事件對(duì)應(yīng)的觸發(fā)器類型只能有一個(gè)
一張表表中只能有一個(gè)對(duì)應(yīng)的after insert 觸發(fā)器
最多只能有6個(gè)觸發(fā)器
before insert after insert before update after update before delete after delete
下單減庫存
有兩張表,一張是商品表,一張是訂單表(保留商品ID)每次訂單生成,商品表中對(duì)應(yīng)的庫存就應(yīng)該發(fā)生變化
創(chuàng)建兩張表:
create table my_item( id int primary key auto_increment, name varchar(20) not null, count int not null default 0 ) comment '商品表'; create table my_order( id int primary key auto_increment, item_id int not null, count int not null default 1 ) comment '訂單表'; insert my_item (name, count) values ('手機(jī)', 100),('電腦', 100), ('包包', 100); mysql> select * from my_item; +----+--------+-------+ | id | name | count | +----+--------+-------+ | 1 | 手機(jī) | 100 | | 2 | 電腦 | 100 | | 3 | 包包 | 100 | +----+--------+-------+ 3 rows in set (0.00 sec) mysql> select * from my_order; Empty set (0.02 sec)
創(chuàng)建觸發(fā)器:
如果訂單表發(fā)生數(shù)據(jù)插入,對(duì)應(yīng)的商品就應(yīng)該減少庫存
delimiter $$ create trigger after_insert_order_trigger after insert on my_order for each row begin -- 更新商品庫存 update my_item set count = count - 1 where id = 1; end $$ delimiter ;
-- 查看所有觸發(fā)器 show triggers\G *************************** 1. row *************************** Trigger: after_insert_order_trigger Event: INSERT Table: my_order Statement: begin update my_item set count = count - 1 where id = 1; end Timing: AFTER Created: 2022-04-16 10:00:19.09 sql_mode: ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION Definer: root@localhost character_set_client: utf8mb4 collation_connection: utf8mb4_general_ci Database Collation: utf8mb4_general_ci 1 row in set (0.00 sec) -- 查看創(chuàng)建語句 show crate trigger 觸發(fā)器名字; -- eg: show create trigger after_insert_order_trigger;
讓觸發(fā)器執(zhí)行,讓觸發(fā)器指定的表中,對(duì)應(yīng)的時(shí)機(jī)發(fā)生對(duì)應(yīng)的操作
insert into my_order (item_id, count) values(1, 1); mysql> select * from my_order; +----+---------+-------+ | id | item_id | count | +----+---------+-------+ | 1 | 1 | 1 | +----+---------+-------+ 1 row in set (0.00 sec) mysql> select * from my_item; +----+--------+-------+ | id | name | count | +----+--------+-------+ | 1 | 手機(jī) | 99 | | 2 | 電腦 | 100 | | 3 | 包包 | 100 | +----+--------+-------+ 3 rows in set (0.00 sec)
drop trigger 觸發(fā)器名字; -- eg drop trigger after_insert_order_trigger;
記錄關(guān)鍵字 new old
商品自動(dòng)扣除庫存
觸發(fā)器針對(duì)的是數(shù)據(jù)表中的每條記錄,每行數(shù)據(jù)再操作前后都有一個(gè)對(duì)應(yīng)的狀態(tài)
觸發(fā)器在執(zhí)行之前就將對(duì)應(yīng)的數(shù)據(jù)狀態(tài)獲取到了:
將沒有操作之前的數(shù)據(jù)狀態(tài)都保存到old
關(guān)鍵字中
操作后的狀態(tài)都放在new
中
觸發(fā)器中,可以通過old和new來獲取綁定表中對(duì)應(yīng)的記錄數(shù)據(jù)
基本語法:
關(guān)鍵字.字段名
old和new并不是所有觸發(fā)器都有
insert 插入前為空,沒有old
delete 清除數(shù)據(jù),沒有new
商品自動(dòng)扣減庫存:
delimiter $$ create trigger after_insert_order_trigger after insert on my_order for each row begin -- 通過new關(guān)鍵字獲取新數(shù)據(jù)的id 和數(shù)量 update my_item set count = count - new.count where id = new.item_id; end $$ delimiter ;
觸發(fā)觸發(fā)器:
mysql> select * from my_order; +----+---------+-------+ | id | item_id | count | +----+---------+-------+ | 1 | 1 | 1 | +----+---------+-------+ mysql> select * from my_item; +----+--------+-------+ | id | name | count | +----+--------+-------+ | 1 | 手機(jī) | 99 | | 2 | 電腦 | 100 | | 3 | 包包 | 100 | +----+--------+-------+ insert into my_order (item_id, count) values(2, 3); mysql> select * from my_order; +----+---------+-------+ | id | item_id | count | +----+---------+-------+ | 1 | 1 | 1 | | 2 | 2 | 3 | +----+---------+-------+ mysql> select * from my_item; +----+--------+-------+ | id | name | count | +----+--------+-------+ | 1 | 手機(jī) | 99 | | 2 | 電腦 | 97 | | 3 | 包包 | 100 | +----+--------+-------+
如果庫存數(shù)量沒有商品訂單多怎么辦?
-- 刪除原有觸發(fā)器 drop trigger after_insert_order_trigger; -- 新增判斷庫存觸發(fā)器 delimiter $$ create trigger after_insert_order_trigger after insert on my_order for each row begin -- 查詢庫存 select count from my_item where id = new.item_id into @count; -- 判斷 if new.count > @count then -- 中斷操作,暴力拋出異常 insert into xxx values ('xxx'); end if; -- 通過new關(guān)鍵字獲取新數(shù)據(jù)的id 和數(shù)量 update my_item set count = count - new.count where id = new.item_id; end $$ delimiter ;
結(jié)果驗(yàn)證:
mysql> insert into my_order (item_id, count) values(3, 101); ERROR 1146 (42S02): Table 'mydatabase2.xxx' doesn't exist mysql> select * from my_order; +----+---------+-------+ | id | item_id | count | +----+---------+-------+ | 1 | 1 | 1 | | 2 | 2 | 3 | +----+---------+-------+ 2 rows in set (0.00 sec) mysql> select * from my_item; +----+--------+-------+ | id | name | count | +----+--------+-------+ | 1 | 手機(jī) | 99 | | 2 | 電腦 | 97 | | 3 | 包包 | 100 | +----+--------+-------+ 3 rows in set (0.00 sec)
感謝各位的閱讀,以上就是“MySQL數(shù)據(jù)庫觸發(fā)器trigger怎么使用”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)MySQL數(shù)據(jù)庫觸發(fā)器trigger怎么使用這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。