数据库
首页 > 数据库> > SQL-SQLServer数据库查询

SQL-SQLServer数据库查询

作者:互联网

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' --所有表

标签:xtype,--,数据库,SQLServer,SQL,sysobjects,where,select,name
来源: https://www.cnblogs.com/-GoFurther/p/14005032.html