I am trying to select records that fall within a date range. I know the sytax to do this in access is something like:
SELECT dbo_tblEvents.fldEventsName, dbo_tblEvents.fldEventsStartDate, dbo_tblEvents.fldEventsEndDate
FROM dbo_tblEvents
WHERE (((dbo_tblEvents.fldEventsStartDate)>#1/1/1995#) AND ((dbo_tblEvents.fldEventsEndDate)<#6/30/2001#));
any ideas how to get this to run in SQL7.0?
Thanks in advance !!!
Matt
SELECT dbo_tblEvents.fldEventsName, dbo_tblEvents.fldEventsStartDate, dbo_tblEvents.fldEventsEndDate
FROM dbo_tblEvents
WHERE (((dbo_tblEvents.fldEventsStartDate)>#1/1/1995#) AND ((dbo_tblEvents.fldEventsEndDate)<#6/30/2001#));
any ideas how to get this to run in SQL7.0?
Thanks in advance !!!
Matt