I have a table let say is it called “test”.
I use Ubuntu and MySQL 5.1.41-3ubuntu12.6 version.
If I try to do “select * from test” it works but if try “select * from Test” or “select * from TEST” it does not work.
Does any had this problem, or knows how to solve it?
Thank you.
I have a table let say is it called test. I use Ubuntu and
Share
It depends on your system (Unix, Windows and Mac OS for the main values).
You need to set your system variable “lower_case_table_names” to 1 or 2, to make your database case insensitive.
or
More at Mysql.com and here