📅  最后修改于: 2022-03-11 15:05:21.179000             🧑  作者: Mango
-- 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)