查询数据库中有多少表、视图、存储过程

sql server:
表: select count(1) from sysobjects where xtype='U' 
视图: select count(1) from sysobjects where xtype='V'
存储过程: select count(1) from sysobjects where xtype='P'
原文地址:https://www.cnblogs.com/Mander/p/3620893.html