What I have is a mix of numbers and ranges in a column like so
Range
---------
1
3-4
4
5-10
8-9
12-20
2
7
9
11-14
6
10
What I want is them to be ordered in the following manner
Range
---------
1
2
3-4
4
5-10
6
7
8-9
9
10
11-14
12-20
Won't work - The simple ORDER BY "Range" produces the following (as expected)
Range
---------
1
10
11-14
12-20
2
3-4
4
5-10
6
7
8-9
9
Is there a "simple" way for me to make it order the values (ranges and numbers) as I want them to?