2017-08-05 48 views
-1

我有两个表: 表T1引用表T2的id。SQL检查表1的日期是否在表2的范围之间

T1 
|id_t2|start_date| 
|00001|2002-01-01| 
|00001|2003-01-01| 
|00001|2004-01-01| 
|00001|2010-01-01| 
|00002|2002-01-01| 
|00002|2003-01-01| 
|00002|2004-01-01| 

T2 
|id_t2|start_date| end_date | 
|00001|2002-08-01|2002-12-31| 
|00001|2003-01-01|2006-01-01| 
|00002|2002-02-01|2002-12-31| 
|00002|2003-01-01|2006-01-01| 

Expected résult: 
|00001|2002-01-01| <= There is no line on T2 where ids are the same and date from T1 is between T2 start_dab and end_date. 
|00001|2010-01-01| <= There is no line on T2 where ids are the same and date from T1 is between T2 start_dab and end_date. 
+1

你有什么实际尝试过自己吗? –

回答

0

您可以使用not exists操作:

SELECT * 
FROM t1 
WHERE NOT EXISTS (SELECT * 
        FROM t2 
        WHERE t2.id_t2 = t1.id_t2 AND 
          t1.start_date BETWEEN t2.start_date and t2.end_date) 
+0

它看起来不错。 THK – Kagwalmina

相关问题