| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1213 人关注过本帖
标题:编写简单的触发器运行结果不行
只看楼主 加入收藏
那个梦
Rank: 1
等 级:新手上路
帖 子:24
专家分:0
注 册:2007-11-7
收藏
 问题点数:0 回复次数:4 
编写简单的触发器运行结果不行
为表T创建一触发器:当职称从“讲师”晋升为“副教授”时,岗位津贴自动增加500元:从“副教授”晋升为“教授”时,岗位津贴自动增加900元。

create trigger update_teacher6 on teacher
for update
as
if update(prof)
declare @tno_new char(6), @tno_old char(6),
@prof_new char(12), @prof_old char(12)
select @tno_new =tno,@prof_new=prof from inserted
select @tno_old =tno,@prof_old=prof from deleted
if exists(select * from deleted
where @prof_old='讲师')
begin
update teacher
set comm=comm+500
where tno=@tno_old
end

请教啊!!!!
搜索更多相关主题的帖子: prof 触发器 tno old char 
2007-11-08 08:59
那个梦
Rank: 1
等 级:新手上路
帖 子:24
专家分:0
注 册:2007-11-7
收藏
得分:0 
请大家来帮忙啊..
2007-11-08 09:09
purana
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:广东-广州
等 级:版主
威 望:66
帖 子:6039
专家分:0
注 册:2005-6-17
收藏
得分:0 

[CODE]create table tt(
id int,
name varchar(10),
prof varchar(20),
comm int
)
insert tt select 1,'小明','讲师',1500
union all select 2,'小强','教授',3900
union all select 3,'小李','副教授',2500
union all select 4,'小陈','普通教师',1000
go
create trigger tri_temp on tt
for update
as
begin
if @@rowcount>1
begin
rollback tran
raiserror ('每次只能更新一条信息',16,1)
return
end
declare @old_prof varchar(20),@new_prof varchar(20)
declare @id int

select @id=id,@old_prof=prof from deleted
select @new_prof=prof from inserted

if update(prof)
begin
if @old_prof='讲师' and @new_prof='副教授'
update tt set comm=comm+500 where id=@id
if @old_prof='副教授' and @new_prof='教授'
update tt set comm=comm+900 where id=@id
end
end
go
select * from tt
update tt set prof='教授' where id=3
select * from tt
drop trigger tri_temp
drop table tt[/CODE]


我的msn: myfend@
2007-11-08 09:37
那个梦
Rank: 1
等 级:新手上路
帖 子:24
专家分:0
注 册:2007-11-7
收藏
得分:0 
谢谢你的解答阿!
2007-11-08 18:33
good_good_study
Rank: 1
等 级:新手上路
帖 子:21
专家分:0
注 册:2007-11-24
收藏
得分:0 
begin
 if @@rowcount>1 begin
 rollback tran
 raiserror ('每次只能更新一条信息',16,1)
 return
 end

不太明白这几句话是什么意思
2007-12-17 09:41
快速回复:编写简单的触发器运行结果不行
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.101134 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved