SQL简单触发器
时间:2011-12-16
来源:互联网
我想写个触发器,在后台往表A 插入数据的时候,检查content的内容是否包括 'ABC'
如果包括,则不让其插入A中。
这个触发器该锄禾实现?
作者: wo_shi_liudong 发布时间: 2011-12-16
create trigger tr_name on A for insert as begin if exists(select 1 from inserted where content like '%A%') rollback end
作者: ssp2009 发布时间: 2011-12-16
if object_id('a') is not null drop table a go create table a ( id int, content varchar(10) ) go if object_id('tr_a_insert') is not null drop trigger tr_a_insert go create trigger tr_a_insert on a for insert as if exists(select 1 from inserted where content like '%abc%') rollback go insert into a select 1,'123' insert into a select 2,'6abc6' select * from a /* id content ----------- ---------- 1 123 (1 行受影响) */
作者: pengxuan 发布时间: 2011-12-16
create trigger test on a for insert as if exists(select 1 from inserted where content like '%abc%') rollback go
作者: fredrickhu 发布时间: 2011-12-16
insert into a select 2,'6abc6'
insert into a select 3,'1231212'
这样的话,最后一条也插入不进去的
作者: wo_shi_liudong 发布时间: 2011-12-16
作者: ssp2009 发布时间: 2011-12-16
for insert
as
begin
if exists(select 1 from inserted where content like '%ABC%')
rollback
end
作者: xuam 发布时间: 2011-12-16
insert into a select 1,'123'
insert into a select 2,'6abc6'
insert into a select 3,'1231212'
这样的话,最后一条也插入不进去的
作者: wo_shi_liudong 发布时间: 2011-12-16
insert into a select 1,'123'
insert into a select 2,'6abc6'
insert into a select 3,'1231212'
这样的话,最后一条也插入不进去的
作者: wo_shi_liudong 发布时间: 2011-12-16
insert into a select 1,'123'
insert into a select 2,'6abc6'
insert into a select 3,'1231212'
这样的话,最后一条也插入不进去的
作者: wo_shi_liudong 发布时间: 2011-12-16
create trigger test on a for insert as if exists(select 1 from inserted where content like '%abc%') rollback else insert into a(content) select @content go
作者: fredrickhu 发布时间: 2011-12-16
作者: gogodiy 发布时间: 2011-12-16
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28