Show databases in mysql : SQL / MySQL examples (example source code) » Database » Current Database

C++
SQL / MySQL
Java Products
Java Articles
SQL / MySQL Home  »   Database   » [  Current Database  ]   
 



Show databases in mysql

/* SHOW DATABASES; */
SHOW DATABASES;

/*
mysql> SHOW DATABASES;
+----------+
| Database |
+----------+
| info     |
| java2s   |
| mysql    |
| t        |
| test     |
| ttt      |
+----------+
6 rows in set (0.00 sec)


*/
Related examples in the same category
1.  List databases








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.