It must be a simple thing but I cannot figure out even looking at lots of examples here at Stackoverflow.
I have this string sequence, generated by a SQLite select:
SELECT sort FROM collections ORDER BY sort
1
10
11
14
15
2
3
4
5
6
6.12
6.7
6.7.13
6.7.8
9
But I need in this order ( sort content is like version numbers ):
1
2
3
4
5
6
6.7
6.7.8
6.7.13
6.12
9
10
11
14
15
Please, how to do this with a SQLITE 3 select ? Best regards