时间:2021-07-01 10:21:17 帮助过:17人阅读
SqlServer/MySql查询某个数据库中表的数量
MySql的统计方法
SELECT count( * ) FROM information_schema.tables WHERE TABLE_SCHEMA = '库名'
SqlServer的统计方法
select count(*) as TableCount from sysobjects where type='u' and status>=0
< 上一篇
MySQL的limit查询优化_MySQL
下一篇 >
MySQL服务优化参数设置参考_MySQL
记住我的登录 忘记密码?
登录
我已阅读用户协议及版权声明
注册