InterviewSolution
Saved Bookmarks
| 1. |
What is the statement used to select a default database?(a) USE(b) CREATE(c) DROP(d) SCHEMA |
|
Answer» Right answer is (a) USE To explain I would say: MySQL has the facility to use various statements specifically at the database level. For selecting a default database, the keyword or clause used is the ‘USE’ statement. |
|