Mysql query are case sensitive?
Posted
by wezzy
on Stack Overflow
See other posts from Stack Overflow
or by wezzy
Published on 2010-03-25T18:00:12Z
Indexed on
2010/03/25
18:03 UTC
Read the original article
Hit count: 526
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
© Stack Overflow or respective owner