I have a table like this
A B ----------- 1.2 2.3 2.3 3.9 3.9 4.34 4.34 5.786
what the data means is that 1.2-5.786 is the length of some table and 1.2-2.3 has some attributes 2.3-3.9 has some attributes and so on... but 1.2 - 5.786 when you consider it is the length of entire table(for example here).
I want to run a query which would give me rows between two values: for example:
A =1.1 amd B = 4.234
I am having hard time to figure out how to write a query, most of the queries I write leave out some edge cases.