阅读量:0
要查看SQL Server数据库中所有表的行数,可以使用以下查询:
SELECT t.NAME AS TableName, SUM(p.rows) AS RowCounts FROM sys.tables t INNER JOIN sys.partitions p ON t.object_id = p.object_id WHERE t.is_ms_shipped = 0 GROUP BY t.NAME ORDER BY RowCounts DESC;
这个查询将返回数据库中每个表的名称以及行数。请注意,此查询只会返回用户创建的表,系统表将被排除在外。