Chinaunix首页 | 论坛 | 博客
  • 博客访问: 795316
  • 博文数量: 161
  • 博客积分: 10005
  • 博客等级: 中将
  • 技术积分: 1445
  • 用 户 组: 普通用户
  • 注册时间: 2006-12-04 15:08
文章分类

全部博文(161)

文章存档

2014年(1)

2013年(1)

2011年(2)

2010年(18)

2009年(26)

2008年(18)

2007年(66)

2006年(29)

我的朋友

分类: 数据库开发技术

2010-12-15 00:05:45

CREATE TRIGGER TR_2 ON BeginTran for insert
as
begin

update MotorInfo
set MotorInfo.CCCS = MotorInfo.CCCS +1
where MotorInfo.MotorNo = inserted.MotorNum

end

错误原因:无法绑定由多个部分组成的标识符"inserted.MotorNum"

解决方法一:

将inserted.MotorNum改为 select MotorNum from inserted

方法二: 给inserted起个别名

CREATE TRIGGER TR_2 ON BeginTran for insert
as
begin

update MotorInfo
set MotorInfo.CCCS = MotorInfo.CCCS +1

from inserted i
where MotorInfo.MotorNo = i.MotorNum

end

阅读(10199) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2010-12-15 15:24:50

很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com