用SqlServer系统表快速统计表的总行数
时间:2011-04-05 来源:@清风......
1 --Sql Server 统计表行数--
2 SELECT o.NAME,i.rowcnt
3 FROM sysindexes AS i
4 INNER JOIN sysobjects AS o ON i.id = o.id
5 WHERE i.indid < 2 and o.xtype = 'U'
6 ORDER BY o.NAME
相关阅读 更多 +
时间:2011-04-05 来源:@清风......
1 --Sql Server 统计表行数--