我有一张像这样的桌子..
TeacherName | Class | Section | SubjectId | Date | ToDate |Day
--------------------------------------------------------------------------------
Matt | 12 | B | Math |2013-03-04 |2013-03-14 |Mon
John | 12 | A | Phy |2013-04-03 |2013-04-12 |Mon
我想要这样的查询(不是实际的 sql 查询)...
Select *
from Table
where Class='12' and section='B' and Date= '2013-03-07'
这应该给我第一行,Matt
因为给定的日期2013-03-07
在该行的日期范围内,从2013-03-04
到2013-03-14
。
这甚至可能吗?