Hackerss.com

Cover image for Mysql or MariaDB - Show All Databases Command
Manuel Montero
Manuel Montero

Posted on • Updated on

Mysql or MariaDB - Show All Databases Command

To show all available Databases on MariaDB you can use the following command:

Command:

SHOW DATABASES;
Enter fullscreen mode Exit fullscreen mode

Output:

MariaDB [hackerss.com]> SHOW DATABASES;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| hackerss           |
| my_database        |
| mysql              |
| performance_schema |
| test               |
+--------------------+
6 rows in set (0.001 sec)
Enter fullscreen mode Exit fullscreen mode

Top comments (0)