查看表名和对应的数据行数
Posted renzhituteng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看表名和对应的数据行数相关的知识,希望对你有一定的参考价值。
select a.name as ‘表名‘,b.rows as ‘表数据行数‘
from sysobjects a inner join sysindexes b
on a.id = b.id
where a.type = ‘u‘
and b.indid in (0,1)
--and a.name not like ‘t%‘
order by b.rows desc
from sysobjects a inner join sysindexes b
on a.id = b.id
where a.type = ‘u‘
and b.indid in (0,1)
--and a.name not like ‘t%‘
order by b.rows desc
以上是关于查看表名和对应的数据行数的主要内容,如果未能解决你的问题,请参考以下文章