Is there any reason that the table names in mysql are case-sensitive but not the column names?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Yes. Some storage engines use one or more files for a table, with as filename the tablename. Certain operating systems (Windows) are case-insensitive for files, and others (unix) are case-sensitive. Set the lower_case_table_names variable different from 0 to disable case sensitivity, and read more about Identifier case sensitivity here |
|||
|
|