Hello,
I'm having troubles creating a query to return records between a certain range of dates. Below is my current query.
Code:SELECT DISTINCT CMS.CMSRID, tmpCMS.FDOS FROM CMS LEFT JOIN tmpCMS1500 ON CMS.CMSRID = tmpCMS.CMSRID WHERE (((tmpCMS.FDOS) Between #1/1/2011# And #10/13/2011#));
But it returns dates from 2010. What gives?