当前位置: 数据库>sqlserver
查询数据库中所有用户表或表个数的sql语句
来源: 互联网 发布时间:2014-08-29
本文导语: 查询数据库db1中所有用户表: 代码示例: use db1 go select * from sysobjects where type = 'U' 查询系统表的个数: 代码示例: select count(*) from sysobjects where type = 'S' 说明: 存储过程:type = 'P' 视图: type = 'V'
查询数据库db1中所有用户表:
代码示例:
use db1
go
select * from sysobjects where type = 'U'
go
select * from sysobjects where type = 'U'
查询系统表的个数:
代码示例:
select count(*) from sysobjects where type = 'S'
说明:
存储过程:type = 'P'
视图: type = 'V'