Answers for "sql period overlap"

SQL
0

sql period overlap

-- table1          <-----row 1 interval------->
-- table2  <---find this--> <--and this--> <--and this-->

SELECT * 
FROM table1,table2 
WHERE table2.start <= table1.end 
AND (table2.end IS NULL OR table2.end >= table1.start)
Posted by: Guest on August-21-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language