InterviewSolution
Saved Bookmarks
| 1. |
Which case does InnoDB store database names in?(a) lower(b) upper(c) mixed(d) random |
|
Answer» Right answer is (a) lower The best I can explain: In InnoDB, all the database names as well as all the table names are stored in lowercase internally. There is no random case assignment to the database elements when the engine is set as InnoDB. |
|