Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> [Help] How to sort like this with SQL?

[Help] How to sort like this with SQL?

From: Taesoo,Cho <yosemite_at_HITEL.KOL.CO.KR>
Date: Sun, 21 Jan 1996 20:49:22 -0500
Message-Id: <9601220203.AA27904@alice.jcc.com>


Good Luck to all the people who read this!

I have the table with one column and it has some datas like this:

1

1.1
1.10
1.2
1.5
1.11
1.3
1.4
1.12

...

If I select this with later statement you can get this result:

SELECT Work_Item
FROM Work_Table
ORDER BY Work_Item;

1

1.1
1.10
1.11
1.12
1.2
1.3
1.4
1.5

...

But I want to sort this datas like this:

1

1.1
1.2
1.3
1.4
1.5
1.10
1.11
1.12

...

How can I get this result? Please be help!

I'm using Oracle 7.0 with SQL*Plus 3.1.

Thanks in advance. Received on Sun Jan 21 1996 - 21:03:31 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US