kinght2008 发表于 2016-11-6 10:54:08

SQL Server中查询每个表的记录数的SQL语句

  
select obj.name ,ind.rows from sysindexes ind left join  sysobjects obj on  ind.id = obj.id
  order by ind.rows  desc
页: [1]
查看完整版本: SQL Server中查询每个表的记录数的SQL语句