InterviewSolution
Saved Bookmarks
| 1. |
Sharmila wants to make the database named 'COMPANY' active and display the names of all the tables in it. Write MYSQL commands for it. |
|
Answer» USE COMPANY; SHOW TABLES; |
|