In MySQL, is there a way to order my results by the length (characters) of a column?
For example:
myColumn ________________ lor lorem lorem ip lorem
Have a look at the LENGTH() operator.
ORDER BY LENGTH(myColumn)