Hey there,
I would like to perform an SQLite query and order my results with numbers last.
Eg:
SQLite will ordinarily order results like this when I specify ASC on a text field:
0, 1, 2, A, B, C
Whereas I would like this:
A, B, C, 0, 1, 2
Any ideas? Is this possible?
Thanks!
Nick.