I have a function that returns five characters with mixed case. If I do a query on this string it will return the value regardless of case.
How can I make MySQL string queries case sensitive?
|
I have a function that returns five characters with mixed case. If I do a query on this string it will return the value regardless of case. How can I make MySQL string queries case sensitive? |
|||||||||||||
|
|
http://dev.mysql.com/doc/refman/5.0/en/case-sensitivity.html
|
|||||||||||
|
|
The good news is that if you need to make a case-sensitive query, it is very easy to do:
|
|||||
|
|
Instead of using the = operator, you may want to use LIKE or LIKE BINARY
It will take 'a' and not 'A' in its condition |
|||
|
|
|
mysql is not case sensitive by default, try changing the language collation to |
|||
|
|
|
Following is for MySQL versions equal to or higher than 5.5. Add to /etc/mysql/my.cnf
All other collations I tried seemed to be case-insensitive, only "utf8_bin" worked. Do not forget to restart mysql after this:
According to http://dev.mysql.com/doc/refman/5.0/en/case-sensitivity.html there is also a "latin1_bin". The "utf8_general_cs" was not accepted by mysql startup. (I read "_cs" as "case-sensitive" - ???). |
|||
|
|
|
Excellent! I share with you, code from a function that compares passwords:
|
|||
|
|