我已經表叫Master
,我需要所有匹配的日期的所有可能的記錄按照用戶輸入@FromDate
和@Todate
....之間有兩個日期條件
主表之間:
ID FromDate ToDate
1 18/03/2014 18/03/2014
2 01/03/2014 05/03/2014
3 06/03/2014 08/03/2014
我的查詢:
select ID
from master M
where M.FromDate between('10/03/2014') and ('17/03/2014')
or M.ToDate between ('10/03/2014') and ('17/03/2014')
用戶輸入:
FromDate ToDate
01/03/2014 06/03/2014
01/03/2014 31/03/2014
09/03/2014 09/03/2014
預期輸出:
2,3
1,2,3
No Records
沒有條件是不正確的,我需要在查詢所有條件的解決方案。 .. – Pradeep