I am using case sensitive table names when I create tables like :
CREATE TABLE MyTest;
If I want to do a select from this table, I have to do SELECT * FROM MyTest, not SELECT * FROM mytest.
How can I make it so that the table name is still MyTest but selects work with mytest ?
-- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe: http://lists.mysql.com/[EMAIL PROTECTED]