比如要删除的触发器名字叫dbo.test_trigger.
先判断这个触发器是否存在,判断存在后删除
if exists (select * from sysobjects where name = 'test_trigger' and type='TR') drop trigger dbo.test_trigger
作者:耑新新,发布于 博客园
转载请注明出处,欢迎邮件交流:zhuanxinxin@aliyun.com
比如要删除的触发器名字叫dbo.test_trigger.
先判断这个触发器是否存在,判断存在后删除
if exists (select * from sysobjects where name = 'test_trigger' and type='TR') drop trigger dbo.test_trigger
作者:耑新新,发布于 博客园
转载请注明出处,欢迎邮件交流:zhuanxinxin@aliyun.com