SQL之删除触发器
比如要删除的触发器名字叫dbo.test_trigger.
先判断这个触发器是否存在,判断存在后删除
if exists (select * from sysobjects where name = 'test_trigger' and type='TR') drop trigger dbo.test_trigger
本文来自博客园,作者:Arthurian,转载请注明原文链接:https://www.cnblogs.com/Arthurian/p/7020110.html
欢迎邮件交流:zhuanxinxin@aliyun.com