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

创建触发器

时间:2014-12-04 11:47:28      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   sp   for   on   div   art   

if (object_id(tr_wuliu_rk_mx, tr) is not null)    
drop trigger tr_wuliu_rk_mx
go 
CREATE TRIGGER tr_wuliu_rk_mx  ON [dbo].[wuliu_rk_mx] 
FOR INSERT, UPDATE, DELETE 
as
declare @tzdbh varchar(100) 
declare @yeartype  varchar(100)
declare @seasontype  varchar(100)
 
--更新时
if update(seasontype)
begin
select @tzdbh =tzdbh ,@yeartype =yeartype,@seasontype =seasontype from inserted 
update wuliu_rk_mx set seasontype=春季 where tzdbh=@tzdbh and ltrim(rtrim(yeartype))=2015 and ltrim(rtrim(seasontype))=秋季
end

 

创建触发器

标签:style   blog   ar   color   sp   for   on   div   art   

原文地址:http://www.cnblogs.com/camelroyu/p/4142169.html

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