Given two date ranges, what is the simplest or most efficient way to determine whether the two date ranges overlap?
As an example, suppose we have ranges denoted by DateTime variables StartDate1 to EndDate1 and StartDate2 to EndDate2.
|
6
|
Given two date ranges, what is the simplest or most efficient way to determine whether the two date ranges overlap? As an example, suppose we have ranges denoted by DateTime variables StartDate1 to EndDate1 and StartDate2 to EndDate2.
|
||||||||
|
|
|
Let CondA Mean DateRange A Completely After DateRange B (True if StartA > EndB) Let CondB Mean DateRange A Completely Before DateRange B (True if EndA < StartB) Then Overlap exists if Neither A Nor B is true ( If one range is neither completely after the other, nor completely before the other, then they must overlap) Now deMorgan's law, I think it is, says that
Which means (StartA <= EndB) And (EndA >= StartB) NOTE: This includes conditions where the edges overlap exactly. If you wish to exclude that, change the [>=] operators to [>], and [<=] to [<] |
||||||||
|
|
|
Here is a generic method that can be usefull locally.
|
||
|
|
|
|
For reasoning about temporal relations (or any other interval relations, come to that), consider Allen's Interval Algebra. It describes the 13 possible relations that two intervals can have with respect to each other. You can find other references - "Allen's Interval" seem to be the operative search terms. You can also find information about these operations in Snodgrass's "Developing Time-Oriented Applications in SQL" (PDF available online at URL), and in Date, Darwen and Lorentzos "Temporal Data and the Relational Model" (see Amazon.com, etc). |
|||
|
|
|
|
The easiest way to do it in my opinion would be to compare if either EndDate1 is before StartDate2 or EndDate2 is before StartDate1. That of course if you are considering intervals in the future and not the past ( StartDate always before EndDate) |
||
|
|
|
|
I woud do
Where IsBetween is something like
|
||||
|
|
|
I believe that it is sufficient to say that the two ranges overlap if:
|
|||
|
|