Select * From table1 where Birthday>=#2009-03-31# and Birthday<=#2009-04-02#or:Select * From table1 where Birthday>=#2009-03-31# and Birthday<= #2009-03-31#+2access取得当前日期函数:Date()Select * From table1 where Birthday>=Date()-2
Access,不可以ConvertSelect * From tablewhere Month(Birthday)*100+Day(BirthDay) between Month(#2009-03-31#)*100+Day(#2009-03-31#) and Month(#2009-03-31#+2)*100+Day(#2009-03-31#+2)
select * from tablewhere (year(birthday) = year(@para) and month(birthday)= month(@para)) or (year(birthday) = year(@para+1) and month(birthday) = month(@para+1)) or 加2 就可以了.@para是你指定的参数