I have a column of a type string that contains values in rows like:
1-1
1-5
1-14
1-7
1-3
Now if I use the ORDER BY on that column I get the order as:
1-1
1-14
1-3
1-5
1-7
What would be the proper way to order it as 1-1, 1-3, 1-5,1-7,1-14
Thank you for your time
You can rename the “1-1” into “1-01”