OK. I've been using "between "dateA" and "dateB" for a while now and have a situation where the records with dateB don't appear in the query results.
Here is the sql code I'm using;
SELECT T_DMZ_EQUIPMENT.ITEM, T_DMZ_EQUIPMENT.TRANS_DATE
FROM T_DMZ_EQUIPMENT
WHERE (((T_DMZ_EQUIPMENT.TRANS_DATE) Between #2/6/2012# And #2/9/2012#))
ORDER BY T_DMZ_EQUIPMENT.ITEM, T_DMZ_EQUIPMENT.TRANS_DATE;
I would think that the results would include all dates between 2/6/12 and 2/9/12 inclusive... The result gives the date range with the exception of 2/9/12.
What am I missing here?
Thanks in advance.
Here is the sql code I'm using;
SELECT T_DMZ_EQUIPMENT.ITEM, T_DMZ_EQUIPMENT.TRANS_DATE
FROM T_DMZ_EQUIPMENT
WHERE (((T_DMZ_EQUIPMENT.TRANS_DATE) Between #2/6/2012# And #2/9/2012#))
ORDER BY T_DMZ_EQUIPMENT.ITEM, T_DMZ_EQUIPMENT.TRANS_DATE;
I would think that the results would include all dates between 2/6/12 and 2/9/12 inclusive... The result gives the date range with the exception of 2/9/12.
What am I missing here?
Thanks in advance.