Try. In this case, it will be sorted by number:
select substr(id,4)*1 from file order by substr(id,4)*1
He will give
one
2
3
eleven
44
...
If you want all fields to try to execute the following query ( "substr (id, 4)" or "substr (id, 5)" depending on the length of the string (for example: id = proj-001911 β accept SUBSTR (id, 6 ) * one))
select * from file order by substr(id,4)*1
Gowri naidu r
source share