I have a table structured like so
ColA|ColB|LowRange|HighRange
----------------------------
1 A 1 5
I would like to create a view that will make the data available in the following format
ColA|ColB|RangeNumber
----------------------
1 A 1
1 A 2
1 A 3
1 A 4
1 A 5
I'm not familiar enough with views so I need some direction.
Thanks