SQLSERVER 数据库查看各表的记录数
发布时间:2020-12-12 13:52:14 所属栏目:MsSql教程 来源:网络整理
导读:1. 各表记录数 select?? a.name as 表名 ,max(b.rows) as 记录条数 ?? from?? sysobjects?? a??,sysindexes?? b????? ? where?? a.id=b.id?? and?? a.xtype=‘u‘??? group?? by?? a.name??? order by max(b.rows) desc ? ? 2. 总记录数 select SUM ( 记录条
1.各表记录数 select?? a.name as 表名,max(b.rows) as 记录条数?? from?? sysobjects?? a??,sysindexes?? b????? ? ? 2.总记录数 select SUM(记录条数) as 总记录数 from( select top 10000 a.name as 表名,max(b.rows) as 记录条数 from sysobjects a,sysindexes b where a.id=b.id and a.xtype=‘u‘ group by a.name order by max(b.rows) desc ) t1 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |