Summary
How to Sort Version numbers in Oracle SQL
Content
I have a requirement to sort the version number
Result Data :
1
1.1
1.1.1
10.1
10.1.1
10.11
17.1
17.1.1
17.1.1.1
2.1
2.1.1
2.2
..
but i need results in the following order
1
1.1
2.1
2.1.1
2.2
10.1
10.1.1
10.11
17.1
....
17.1.1.1
Tried by converting varchar to number but does not provide appropriate results
Kindly help me on this