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
where memories recorded, ideas written, photos taken, heart stolen, milestone defined
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