如何知道数据库中每个表有多少行?

2024-12-18 13:00:08
推荐回答(2个)
回答1:

我只会这样做。。
select count(*) from 表1 union select count(*) from 表2 union .....类推

回答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)