在查询一张表的记录数时,由于记录数太多,采用"Select count(1) from 表名"进行查询一直超时。
后采用下面的SQL,不到1秒钟即返回结果。
SQLServer select rowcnt from sysindexes where id=object_id('表名')
mysql select tab_row from information_schema where tab_name='表名'
DB2 select * from sysibm.sysindexs
数据库系统表中可以找到存储这个表记录数的相关表。