MYSQL Query用于计算mysql服务器中存在的模式数

时间:2013-07-17 11:10:32

标签: mysql phpmyadmin mysqldump mysql-workbench

说明连接是否包含 localhost
* INFORMATION_SCHEMA
MySQL的
performance_schema
测试
test_database *

查询以检索模式的计数
计数(架构)
----------------------
5

2 个答案:

答案 0 :(得分:0)

SELECT COUNT(SCHEMA_NAME) FROM information_schema.SCHEMATA

答案 1 :(得分:0)

你可以试试这个

select count(*) from information_schema.SCHEMATA where schema_name not in
('mysql','information_schema');

如果您想要所有数据库

然后使用

select count(*) from information_schema.SCHEMATA where schema_name;