常用資料庫查詢統計彙總

而立大叔發表於2012-07-13

1、查詢資料庫中所有表:

select name from sysobjects where xtype='U';

2、查詢資料庫中所有表的記錄數量:

select a.name, b.rows  from sysobjects a inner join sysindexes b on a.id = b.id where a.type = 'u'   and b.indid in (0, 1) order by a.name

相關文章