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

Any idea why this works sensibly*:

mysql> select lower('AB100c');
+-----------------+
| lower('AB100c') |
+-----------------+
| ab100c          |
+-----------------+
1 row in set (0.00 sec)

But this doesn't?

mysql> select lower(concat('A', 'B', 100,'C'));
+----------------------------------+
| lower(concat('A', 'B', 100,'C')) |
+----------------------------------+
| AB100C                           |
+----------------------------------+
1 row in set (0.00 sec)

*sensibly = 'the way I think it should work.'

share|improve this question

3 Answers

up vote 5 down vote accepted

As stated on MySql String functions:


LOWER(str)

LOWER() is ineffective when applied to binary strings (BINARY, VARBINARY, BLOB).


CONCAT(str1,str2,...)

Returns the string that results from concatenating the arguments. May have one or more arguments. If all arguments are nonbinary strings, the result is a nonbinary string. If the arguments include any binary strings, the result is a binary string. A numeric argument is converted to its equivalent binary string form; if you want to avoid that, you can use an explicit type cast.


In your code you are passing 100 as a numeric so concat will return a binary string and lower is ineffective when applied to binary strings that's why it's not get converted. If you want to convert you can try this:

select lower(concat('A', 'B', '100','C'));
share|improve this answer
Thanks for the detailed answer -- I had looked in the document you reference, but failed to grasp the part about how a numeric argument turned the whole string binary. – shanusmagnus May 6 '11 at 14:04

lower is used to convert STRINGS to lowercase. But your value 100 is considered numeric. If you want to still achieve the result of lower case conversion, you should enclose the number in quotes like this:

select lower(concat('A', 'B', '100','C'));

I've tested this and it works fine.

share|improve this answer
Shame that MySQL isn't sensible enough not to play fast'n'loose with your SQL. – mu is too short May 6 '11 at 4:40
Ideally, the coder will build the concat string in a language like PHP. And if this were to be dynamically generated (using a loop, for example), each value to concatenate will be 'quoted'. So I guess the 'looseness' of the concat function is not a real issue. – itsols May 6 '11 at 5:37

And here is an other example with CONCAT and LIKE

LOWER(CONCAT(firstname, ' ', lastname)) LIKE LOWER('%my name%')
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.