InterviewSolution
Saved Bookmarks
| 1. |
The default case sensitivity of the database and table names depends on ___________(a) Server SQL mode(b) Operating system of machine(c) Does not depend on anything(d) SQL serverThis question was posed to me in final exam.My doubt stems from Using Multiple-Statement Execution topic in section MySQL Programs Using C of MySQL |
|
Answer» RIGHT option is (b) Operating system of MACHINE For explanation: The DEFAULT case sensitivity imposes a dependency on the operating system of the machine on which the MYSQL server is running. Windows does not treat database and table names as case sensitive unlike Unix. |
|