SqlServer查询某个数据库中表的数量?解释下 Sysobjects 什么type='u' and status>=0什么有个用户创建的数据库 ProjectsA ,怎么查它的表个数
2 回答
largeQ
TA贡献2039条经验 获得超7个赞
1 | select count (*) as TableCount from sysobjects where type= 'u' and status>=0 |
- 2 回答
- 0 关注
- 576 浏览
添加回答
举报
0/150
提交
取消