Use the SHOW statement to find out what databases currently exist on the server : SHOW : MySQL Utilities MySQL TUTORIALS


MySQL TUTORIALS » MySQL Utilities » SHOW »

 

Use the SHOW statement to find out what databases currently exist on the server


mysql>
mysql> SHOW DATABASES;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| test               |
+--------------------+
rows in set (0.00 sec)

mysql>
mysql>

The mysql database describes user access privileges.

The test database is for users to try things out.




Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo MySQL Utilities
» SHOW