MySQL Forums
Forum List  »  Newbie

Re: Does lower_case_table_names=0 really work under Windows?
Posted by: Paul McArdle
Date: June 28, 2005 06:25PM

http://dev.mysql.com/doc/mysql/en/case-sensitivity.html

select * from aaaa where aaaa collate latin1_bin LIKE 'a%';
+------+
| aaaa |
+------+
| a'aa |
| aaaa |
+------+
2 rows in set (0.00 sec)

mysql> select * from aaaa where aaaa collate latin1_bin LIKE 'A%';
+------+
| aaaa |
+------+
| AAAA |
+------+
1 row in set (0.01 sec)

Options: ReplyQuote


Subject
Written By
Posted
Re: Does lower_case_table_names=0 really work under Windows?
June 28, 2005 06:25PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.