Comparing date in Access SQL query

后端 未结 2 848
遥遥无期
遥遥无期 2021-02-14 04:37

I\'m having trouble with Access sql query. Im new to this so bieng a rookie its difficult to figure out the syntax. below is my query.

SELECT *
FROM BookingMaste         


        
2条回答
  •  醉话见心
    2021-02-14 04:55

    try this..

    SELECT * FROM BookingMaster where (JourneyDate >= #01/08/2012#) and (JourneyDate < #01/09/2012#);
    

提交回复
热议问题