判断sqlserver中哪个表的记录多

select id,OBJECT_NAME(id) AS tablename, indid,rows,rowcnt
from sys.sysindexes a where indid in (0,1) order by rows desc