views:

50

answers:

1

When i set lower_case_table_names = 1 in mysql i know that it converts every table name to lowecase so "myCoolLowerCaseName" becomes "mycoollowercasename". But the question is: queries with camelcase name works ? with a table called mycoollowercasename the query:SELECT * FROM myCoolLowerCaseName works?

Thanks

+1  A: 

Yes, table names are sensitive. You need to use the case sensitive name of the table in your queries.

Dragos Badea