SELECT * FROM table ORDER BY string_length(column);

is there a mysql function to do this (of course instead of "string_length")?

thank you!

link|improve this question

feedback

2 Answers

up vote 26 down vote accepted

You are looking for LENGTH()

link|improve this answer
2  
wow that's pretty simple. thank you! – Gal Dec 9 '09 at 0:51
You are my hero ... saved my ass :D – Ahmad Alfy Oct 9 '11 at 18:19
4  
Actually, CHAR_LENGTH() should be a better choice. For multi-byte charsets LENGTH() will give you the number of bytes the string occupies, while CHAR_LENGTH() will return the number of characters. – András Szepesházi Nov 1 '11 at 14:59
feedback
select * from table order by length(column);

Documentation on the length() function, as well as all the other string functions, is available here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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