发布网友 发布时间:2024-09-25 20:37
共1个回答
热心网友 时间:2024-10-30 00:28
Create Trigger trtest追答这个是update触发器
Create Trigger trtest
On test --在test表中创建触发器
for Update --为什么事件触发
As --事件触发后所要做的事情
DECLARE @a int
SET @a = (select a from updated)
if (@a=1)
begin
ROLLBACK
end
这个是insert触发器
Create Trigger trtest
On test --在test表中创建触发器
for insert --为什么事件触发
As --事件触发后所要做的事情
DECLARE @a int
SET @a = (select a from updated)
if (@a=1)
begin
ROLLBACK
end