gaodaima.com
SqlServer/MySql查询某个数据库中表的数量
MySql的统计方法
SELECT count( * ) FROM information_schema.tables WHERE TABLE_SCHEMA = '库名'
SqlServer的统计方法
select count(*) as TableCount from <em>本文来源[email protected]搞@^&代*@码)网5</em>sysobjects where type='u' and status>=0
gaodaima.com