簡單的杳詢如果查數據庫裡連繼三個月的信息?比如我查2007-12-01到2008-02-31號的信息where後面要怎麼寫呢。[解决办法]
where 列>='2007-12-01' and 列<'2008-03-01'[解决办法]
where 列>='2007-12-01' and 列<dateadd('2008-03-01',day,1)[解决办法]
Where YourDate Between '2007-12-01' And '2008-03-01'