I'm trying to order the results of a query in a non alpha-numerical order. For example, if the possible values of a column are '1', '2' and '3'. ORDER BY asc will display rows with '1' first, then rows with '2' and finally rows with '3'. ORDER BY desc will do the oppsite.
What if I want a different order, like 3, 1, 2 or 1, 3, 2 ? Is that possible ?
Thank you
