InterviewSolution
Saved Bookmarks
| 1. |
How do you view a database in MySQL? |
|
Answer» One can view all the databases on the MYSQL server HOST USING the following command: mysql> SHOW DATABASES; |
|