接続が
*information_schema
mysql
performance_schema
test
test_database*を含む
localhostである場合、
スキーマの数を取得するためのクエリ
count(schema)
----------------------
5
質問する
960 次
2 に答える
0
SELECT COUNT(SCHEMA_NAME) FROM information_schema.SCHEMATA
于 2013-07-17T11:23:32.393 に答える
0
これを試すことができます
select count(*) from information_schema.SCHEMATA where schema_name not in
('mysql','information_schema');
必要な場合 すべてのデータベース
次に使用
select count(*) from information_schema.SCHEMATA where schema_name;
于 2013-07-17T11:26:16.913 に答える