I have an Oracle 10g DB, and I have a VARCHAR2 column (2000 characters), name it TEST, which can contain the numbers before, for example:
test
1test
3test
When I call "... asc test order" or just "... test order"
I get results ordered as
test
1test
3test
But I would like to arrange the results like this:
1test
3test
test
So, first numbered inserts, is there a way to achieve this?
source
share