Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Please post your query. – Jason McCreary Apr 12 '11 at 0:38
2  
Notice that BINARY is not the same as case sensitive comparison: select 'à' like 'a' // returns true select 'à' like BINARY 'a' // returns false!!! select 'à' like 'a' COLLATE latin1_general_cs // returns true So the suggestion to use BINARY for case sensitive compare is incorrect. – cquezel Dec 2 '11 at 4:09
@cquezel: So, you're saying that [select 'à' like BINARY 'a'] should return true?? In any case, what has this to do with case sensitive comparisons? – Francisco Zarabozo Mar 31 at 8:44

6 Answers

up vote 23 down vote accepted

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

The default character set and collation are latin1 and latin1_swedish_ci, so nonbinary string comparisons are case insensitive by default. This means that if you search with col_name LIKE 'a%', you get all column values that start with A or a. To make this search case sensitive, make sure that one of the operands has a case sensitive or binary collation. For example, if you are comparing a column and a string that both have the latin1 character set, you can use the COLLATE operator to cause either operand to have the latin1_general_cs or latin1_bin collation:

col_name COLLATE latin1_general_cs LIKE 'a%'
col_name LIKE 'a%' COLLATE latin1_general_cs
col_name COLLATE latin1_bin LIKE 'a%'
col_name LIKE 'a%' COLLATE latin1_bin

If you want a column always to be treated in case-sensitive fashion, declare it with a case sensitive or binary collation.

share|improve this answer
any hint on how to do this in phpmyadmin? – StevenB Apr 12 '11 at 0:44
@StevenB: Click the column's Edit button, then set the Collation --> i.imgur.com/7SoEw.png – drudge Apr 12 '11 at 0:50
1  
This doesn't work if your columns are utf-8 encoded – B T Sep 27 '12 at 18:28
@BT To make utf8 column case sensitive you could use bin colation like: SELECT 'email' COLLATE utf8_bin = 'Email' – piotrekkr Apr 23 at 11:43

The good news is that if you need to make a case-sensitive query, it is very easy to do:

SELECT *  FROM `table` WHERE BINARY `column` = 'value'
share|improve this answer
10  
This is exactly what I was looking for. I would it up higher if I could. A question though, what effect does this have on performance? I'm using it on a limited reporting thing, so it's not important in my case, but I am curious. – adjwilli Aug 25 '12 at 19:13

Instead of using the = operator, you may want to use LIKE or LIKE BINARY

// this returns 1 (true)
select 'A' like 'a'

// this returns 0 (false)
select 'A' like binary 'a'


select * from user where username like binary 'a'

It will take 'a' and not 'A' in its condition

share|improve this answer

mysql is not case sensitive by default, try changing the language collation to latin1_general_cs

share|improve this answer

Following is for MySQL versions equal to or higher than 5.5.

Add to /etc/mysql/my.cnf

  [mysqld]
  ...
  character-set-server=utf8
  collation-server=utf8_bin
  ...

All other collations I tried seemed to be case-insensitive, only "utf8_bin" worked.

Do not forget to restart mysql after this:

   sudo service mysql restart

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" - ???).

share|improve this answer

Excellent!

I share with you, code from a function that compares passwords:

SET pSignal =
(SELECT DECODE(r.usignal,'YOURSTRINGKEY') FROM rsw_uds r WHERE r.uname =
in_usdname AND r.uvige = 1);

SET pSuccess =(SELECT in_usdsignal LIKE BINARY pSignal);

IF pSuccess = 1 THEN
      /*Your code if match*/
ELSE
      /*Your code if don't match*/

END IF;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.