Here is a table structure (e.g. test):
Field Name | Data Type |
---|---|
id | BIGINT (20) |
title | varchar(25) |
Description | Text |
A query like:
SELECT * FROM TEST ORDER BY description DESC;
But I would like to order by the field size/length of the field description.
The field type will be TEXT or BLOB.