SQL Server 触发器 表的特定字段更新时,触发Update触发器

前端之家收集整理的这篇文章主要介绍了SQL Server 触发器 表的特定字段更新时,触发Update触发器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="codetitle"><a style="CURSOR: pointer" data="16038" class="copybut" id="copybut16038" onclick="doCopy('code16038')"> 代码如下:

<div class="codebody" id="code16038">
create trigger TR_MasterTable_Update
on MasterTable
after update
as
if update ([Type])--当Type字段被更新时,才会触发此触发器
insert into MasterLogTable
select
Id
,(Case [Type] when 1 then 'Type1'
when 2 then 'Type2'
when 3 then 'Type3'
when 4 then 'Type4'
else 'TypeDefault'
end)
,Name
from inserted
go

另外再补充一句:insert和update的数据都会保存在临时表中,所以使用inserted可以取出这些数据,删除时使用deleted可以取出被删除的数据
转载请标明出处:http://blog.csdn.net/tjvictor

原文链接:https://www.f2er.com/mssql/64301.html

猜你在找的MsSQL相关文章