说明连接是否包含 localhost
* INFORMATION_SCHEMA
MySQL的
performance_schema
测试
test_database *
查询以检索模式的计数
计数(架构)
----------------------
5
答案 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;