InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is case sensitive in MySQL?(a) Event names(b) Logfile group names(c) Column names(d) Indexes |
|
Answer» The correct option is (b) Logfile group names To explain I would say: Column names and indexes are not case sensitive on any platform and neither are column aliases. Unlike the standard SQL, the names of the log file groups are always case sensitive. |
|