SQLServer触发器实例
以前没写过SqlServer的触发器,折腾了一天,总算写好了,现在记录一下心得。 SqlServer触发器的语法就不提了,主要记录一下主要事项。每个开始都得有Begin 内容 end ,之前不明白这里,写条件触发折腾了好多遍都是不准确,以下是实例: if (object_id('inser
以前没写过SqlServer的触发器,折腾了一天,总算写好了,现在记录一下心得。
SqlServer触发器的语法就不提了,主要记录一下主要事项。每个开始都得有Begin 内容 end ,之前不明白这里,写条件触发折腾了好多遍都是不准确,以下是实例:
if (object_id('insert_black_list', 'tr') is not null) drop trigger insert_black_list
go
create TRIGGER insert_black_list
on User_Infor_Message
after insert
as
declare @messagetype varchar(1)
declare @cardno varchar(10)
BEGIN
select @messagetype = messagetype,@cardno=cardno from User_Infor_Message
if @messagetype='1' or @messagetype='5'
begin
if (select count(cardno) from Balck_List where
cardno=@cardno)=0
begin
insert into Balck_List select Inserted.cardno,Inserted.cardid,convert(varchar(8),getdate(),112) from Inserted
end
end
else if @messagetype='6'
begin
delete from Balck_List where
cardno=@cardno
end
END
go
上一篇: Discuz插件漏洞攻击_PHP教程
下一篇: 数据库修复Part2: 页面还原
推荐阅读
-
asp.net(C#)使用QRCode生成图片中心加Logo或图像的二维码实例
-
winform树形菜单无限级分类实例
-
iOS中UIWebView网页加载组件的基础及使用技巧实例
-
iOS中UIActivityIndicatorView的用法及齿轮等待动画实例
-
使用Swift代码实现iOS手势解锁、指纹解锁实例详解
-
Python中asyncore异步模块的用法及实现httpclient的实例
-
Java创建文件夹及文件实例代码
-
Photoshop将利用替换颜色命令快速将照片变成黄色的入门实例教程
-
实例讲解Python中SocketServer模块处理网络请求的用法
-
java HashMap的keyset实例