Attila Bukta, PhD
Home > MySQL > MySQL: Number of Databases

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');

 

  1. No comments yet.
  1. No trackbacks yet.
You must be logged in to post a comment.