Oracle
 sql >> Database >  >> RDS >> Oracle

Trova i record con intervalli di date sovrapposti in SQL

la risposta precedente non tiene conto delle situazioni in cui t2 è interamente all'interno di t1

select * from t t1
join t t2 on (t1.datefrom > t2.datefrom and t1.datefrom < t2.dateto  )
          or (t1.dateto   > t2.datefrom and t1.dateto   < t2.dateto  )
          or (t1.dateto   > t2.dateto   and t1.datefrom < t2.datefrom)