select name from sysobjects where xtype='TR' --所有触发器 select name from sysobjects where xtype='P' --所有存储过程 select name from sysobjects where xtype='V' --所有视图 select name from sysobjects where xtype='U' --所有表 以上为SqlServer用法 Select object_name From user_objects Where object_type='TRIGGER'; --所有触发器 Select object_name From user_objects Where object_type='PROCEDURE'; --所有存储过程 Select object_name From user_objects Where object_type='VIEW'; --所有视图 Select object_name From user_objects Where object_type='TABLE'; --所有表 Select object_name From user_objects Where object_type='SEQUENCE'; --序列 以上为Oracle用法
以上就是可爱电源最近收集整理的关于如何查询数据库中的所有触发器的全部内容,更多相关如何查询数据库中内容请搜索靠谱客的其他文章。
发表评论 取消回复