摘要: -- 计算数据库中所有表的记录条数 select a.name as 表名,max(b.rows) as 记录条数 from sysobjects a ,sysindexes b where a.id=b.id and a.xtype='U' group by a.name order by max 阅读全文
posted @ 2024-07-27 08:00 poisson_notes 阅读(11) 评论(0) 推荐(0) 编辑