我是靠谱客的博主 潇洒钻石,最近开发中收集的这篇文章主要介绍sqlserver trigger(触发器)-更新某几列数据时触发,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

CREATE TRIGGER [dbo].[updataAlarmLevel]
ON [dbo].[Alarm_Alarm_Info]
AFTER INSERT, UPDATE  – 在更新和插入之后
AS
BEGIN
if update(transferNum) or update(potentialLoss) –如果Alarm_Alarm_Info表中的transferNum或potentialLoss两列发生改变所触发的事件;  或者用 or
declare @transferNum int;
declare @potentialLoss decimal(20,2);
declare @alarmLeve int;
select @transferNum=transferNum from inserted; --inserted表示当前修改的数据行
select @potentialLoss=potentialLoss from inserted;
if @transferNum > 1000 or @potentialLoss > 100000000  --if条件不需要{}
set @alarmLeve = 1;--特大型警情
else if 500 < @transferNum and @transferNum <= 1000 or @potentialLoss <= 100000000 and @potentialLoss > 50000000
set @alarmLeve = 2;--大型警情
else if 100 < @transferNum and @transferNum <= 500 or @potentialLoss > 5000000 and @potentialLoss <= 50000000
set @alarmLeve = 3;--中型警情
else if @transferNum <= 100 or @potentialLoss <= 5000000
set @alarmLeve = 4;--小型警情
update Alarm_Alarm_Info set alarmLevel = @alarmLeve where id = (select id from inserted);
END

最后

以上就是潇洒钻石为你收集整理的sqlserver trigger(触发器)-更新某几列数据时触发的全部内容,希望文章能够帮你解决sqlserver trigger(触发器)-更新某几列数据时触发所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部