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

触发器(升级头衔)

时间:2014-06-22 10:19:39      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:update   触发器   

alter trigger UserInfo_update--触发器(每次修改则触发)
on UserInfo for update
as
declare @a int
set @a=(select UserJifen from inserted)
update UserInfo set UserTouXian=
case 
when @a<100 then ‘贫民Θ1.gif‘
when @a<100 and @a<500 then ‘平民Θ2.gif‘
when @a>499 and @a<2000 then ‘财主Θ3.gif‘
when @a>1999 and @a<10000 then ‘地主Θ4.gif‘
when @a>9999 then ‘土豪Θ5.gif‘
else ‘不明身份Θ6.gif‘
end
where UserID=(select UserID from inserted)

本文出自 “程序猿的家” 博客,请务必保留此出处http://962410314.blog.51cto.com/7563109/1429421

触发器(升级头衔),布布扣,bubuko.com

触发器(升级头衔)

标签:update   触发器   

原文地址:http://962410314.blog.51cto.com/7563109/1429421

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