码迷,mamicode.com
首页 > 其他好文 > 详细

使用触发器做简单编程

时间:2014-11-23 01:54:37      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:blog   ar   使用   sp   for   数据   on   div   log   

有两张表(商品表和订单表,结构如下)

CREATE TABLE goods (
  gid int(11) DEFAULT NULL,
  name varchar(20) DEFAULT NULL,
  num smallint(6) DEFAULT NULL
);


CREATE TABLE ord (
  oid int(11) DEFAULT NULL,
  gid int(11) DEFAULT NULL,
  much smallint(6) DEFAULT NULL
);

插入数据:
INSERT INTO goods VALUES (‘1‘,‘cat‘,‘32‘), (‘2‘,‘dog‘,‘65‘), (‘3‘,‘pig‘,‘21‘);

 业务场景如下:

客户如果买的东西超过了库存(goods表的num字段),如何预防,能否在购买量(插入ord表的much字段)>库存量(goods表的num字段)时,把much自动改为num

使用触发器:

create trigger t
before
insert
on ord
for each row

begin

declare
rnum int;

select num into rnum from goods where gid = new.gid;

if new.much > rnum then
	set new.much = rnum;
end if;

update goods set num = num - new.much where gid=new.gid;
end

  

 

使用触发器做简单编程

标签:blog   ar   使用   sp   for   数据   on   div   log   

原文地址:http://www.cnblogs.com/lzxl/p/4116068.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!