时间:2021-07-01 10:21:17 帮助过:27人阅读
统计Sql Server数据库中的每张表的记录数 USE JYDB -- JYDB为你所在的数据库 GO select b.[name] ‘表名‘,max(a.rowcnt) ‘记录数‘ from sysindexes a join sys.objects b on b.object_id=a.id where b.type=‘U‘ group by b.[name]
本文出自 “技术成就梦想” 博客,请务必保留此出处http://pizibaidu.blog.51cto.com/1361909/1683669
统计Sql Server数据库中的每张表的记录数
标签:数据库 sqlserver 统计表记录 微软