一个典型的Sql Server 触发器应用
问题:
有两个表:
user表(userid,username,userpwd,sex,departid) //userid主键
department表(departid,departname,membercount) //departid主键
两表建立了外键约束
membercount是部门人数,在插入一个Userde的时候相应部门的membercount需要加1,删除的时候需要减1,修改departid的时候需要在改前部门减1,改后部门加1。
想用触发器实现在更新user表时自动更新department表的membercount。
--触发器代码
create trigger tr_user
on user
for insert,update,delete
as
set nocount on
update a
set membercount=a.membercount+b.membercount --b.membercount是这次操作的增量,可能为负数
from department a,(
select departid,sum(membercount) as membercount --增量由统计得到
from (
select departid,1 as membercount --插入或者改后的部门+1
from inserted
union all
select departid,-1 as membercount --删除或者改前的部门-1
from deleted
) as t
group by departid
having sum(membercount)<>0 --只取<>0的数据减少更改的记录数
) as b
where a.departid=b.departid --连接条件
go