请问在SQLSERVER中如何查询某个表所建触发器名称.
select trigger_name from user_triggers where table_name= "tname "
如oracle这样.谢谢各位.
------解决方案--------------------sp_helptrigger tablename
------解决方案--------------------select name from sysobjects
where parent_obj = object_id( '表1 ') and type = 'TR '