日期:2014-05-17 浏览次数:20482 次
create table test
(
id int not null primary key identity(1,1),
xy int ,
[min] int default(0),
[max] int default(1000)
)
go
create trigger dbo.trigger_test_insert
on test
for insert
as
if exists(select * from test where not(xy>[min] and xy<[max]))
rollback
go
--1.满足,不会报错
insert into test
select 10,1,11
--2.不满足条件,所以报错,插入不了
insert into test
select 10,1,10
/*
消息 3609,级别 16,状态 1,第 1 行
事务在触发器中结束。批处理已中止。
*/