快速获取表的记录数 leftfist 2021-04-26 46 阅读1分钟 可以这样写: use [mydb] go select rows from sysindexes where id = object_id('表名') and indid in (0,1); \ indidsmallint索引 ID:0 = 堆1 = 聚集索引> 1 = 非聚集索引 \ 这样就不必写出 select count(*) from 表 这样耗费资源的语句了。