as the title states:
I have a select query, which I\'m trying to \"order by\" a field which contains numbers, the thing is this numbers are really strings starting w
You could use CAST:
CAST
ORDER BY CAST(columnname AS INTEGER)