摘要: 查询所有表以及记录数:select a.name as 表名,max(b.rows) as 记录条数 from sysobjects a ,sysindexes b where a.id=b.id and a.xtype='u' group by ... 阅读全文
posted @ 2014-09-23 13:17 xyzhuzhou 阅读(610) 评论(0) 推荐(0) 编辑