王大

这世界不只眼前的苟且,还有诗与远方

导航

SQL 获取各表记录数的最快方法

Posted on 2013-08-05 16:39  Cavalry  阅读(241)  评论(0编辑  收藏  举报

select distinct o.name,i.rows from sysobjects o,sysindexes  i where o.id=i.id and o.Xtype= 'U' and i.indid <2 Order By i.rows Desc