Search This Blog

A way to sort this by the length of the strings in it (without 
having to write lots of code)? Showing longest strings first, for 
example. 
 
SELECT StringColumn, len(StringColumn) AS LengthFROM YourTableORDER BY len(StringColumn) DESC