得到数据库里一共有多少条数据
select sum( b.rows) from sysobjects a inner join sysindexes b on a.id = b.id where a.type = 'u' and b.indid in (0, 1)
select sum( b.rows) from sysobjects a inner join sysindexes b on a.id = b.id where a.type = 'u' and b.indid in (0, 1)