码迷,mamicode.com
首页 > 其他好文 > 详细

查看表名和对应的数据行数

时间:2019-05-31 16:51:59      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:alt   sel   src   sele   esc   cal   rom   row   and   

 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 

查看表名和对应的数据行数

标签:alt   sel   src   sele   esc   cal   rom   row   and   

原文地址:https://www.cnblogs.com/renzhituteng/p/10955666.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!