30
Jun 11
MySQL: Number of Databases
The query to find the total number of databases can be found by executing the following query:
select count(*) from information_schema.SCHEMATA where schema_name not in ('mysql','information_schema');
30
Jun 11
The query to find the total number of databases can be found by executing the following query:
select count(*) from information_schema.SCHEMATA where schema_name not in ('mysql','information_schema');
No comments yet, be the first.
Leave a Reply
You must be logged in to post a comment.