sql创建触发器 当在一个表中添加内容的时候 另一个表中的字段更新

表a和b, a中插入字段的时候b中的字段State=1变为0
2024-12-05 09:05:38
推荐回答(1个)
回答1:

create trigger tgr_name
on 表a
for insert
as
declare @id
select @id=id from inserted
update 表b
set State=0

where State=1 and id=@id