sql server 禁用和启用触发器语句

1、禁用触发器:

alter table 表名 disable trigger 触发器名字

2、启用触发器:

alter table 表名 enable trigger 触发器名字

你可能感兴趣的:(sql,数据库)