创建触发器,对象名无效
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建触发器,对象名无效相关的知识,希望对你有一定的参考价值。
create trigger insert_customer
on CustomerInformation
for insert,update
as
update RoomInformation
set Rstate=1
where RoomInformation.Rno in (select Rno from CustomerInformation)
SQL语句
服务器: 消息 208,级别 16,状态 4,过程 insert_customer,行 1
对象名 'CustomerInformation' 无效。
提示
2、解发器内用INSERTED:
update RoomInformation
set Rstate=1
where RoomInformation.Rno in (select Rno from inserted)
以上是关于创建触发器,对象名无效的主要内容,如果未能解决你的问题,请参考以下文章