Given a set [2004, 2008], what is the fastest way to find if this set is intersected with other sets?
Actually I am dealing a problem with database, the table has 2 columns, one is the lower bound, the other one is the higher bound. The task is to find all the intersected rows with the given 2 tuple(like [2004,2008]).
I am using mongodb, is this intrinsically supported(I mean have keywords to do it). I have large user base, so I want this task to be completed as fast as possible.
EDIT: To stat more clear, a database table contains following rows:
20 30
10 50
60 90
...
Given the input (25 40) range, I want to return the rows which represent a range, have intersection with the given range.
so return is: (20 30),(10 50)
SELECT * from the_table where not (lower_bound > 2008 or upper_bound < 2004). If it can't do that, it's not a database ;-p – Steve Jessop Jan 10 '11 at 12:08