To show all available Databases on MariaDB you can use the following command:
Command:
SHOW DATABASES;
Output:
MariaDB [hackerss.com]> SHOW DATABASES;
+--------------------+
| Database |
+--------------------+
| information_schema |
| hackerss |
| my_database |
| mysql |
| performance_schema |
| test |
+--------------------+
6 rows in set (0.001 sec)
Top comments (0)