InterviewSolution
Saved Bookmarks
| 1. |
What is the maximum number of characters allowed for a database name to have?(a) 16(b) 32(c) 64(d) 128 |
|
Answer» Correct option is (c) 64 The explanation: MySQL allows the database names and the table names to be a maximum of 64 characters long. The length of these names is also bound by the length allowed by the operating system on the machine. |
|