Consider an Event table, with columns A and B defining the start and end of the period of time over which the event occurred.
Consider also a random period of time defined from S to E.
Now imagine that you want to select all event rows that overlap that specific period of time.
By overlap, we mean that case 1,2,4, and 6 should be included, but 3 and 5 should not:
The first solution that might occur to us is this one:
select * from Event
where B between S and E or A between S and E
select * from Event
where B >= S and A <= E
Leave a Reply
You must be logged in to post a comment.