Morning, is it possible to order sql data rows by the length of characters?
e.g. SELECT * FROM database ORDER BY data.length()
SELECT * FROM database ORDER BY data.length()
For anyone doing with Sqlite
SELECT * FROM table ORDER BY LENGTH(field) DESC