How to get list of all MySQL Databases
Often as MySQL DBAs or MySQL developers we need to get the current list of Databases which exits on MySQL Server. You can use below query that uses system tables to get the list of MySQL Databases.
You can use
show databases;
Or you can use below
You can use
show databases;
Or you can use below
Select schema_name from information_schema.schemata;
Get list of all MySQL Database | Get All databases names from MariaDB
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.