J
Joe
Hi folks,
The SQL statement beloe was supposed to select dates between July1, 2008 and
Sept 30, 2008 but it is returning all dates even from 2007. What do I need to
fix in the statement to get the dates I specified?
SELECT [Cost Containment Main Table (fixed)].AuditNumber, [Cost Containment
Main Table (fixed)].[Par Facility Provider], [Cost Containment Main Table
(fixed)].[Imaging Number], [Cost Containment Main Table (fixed)].LastName,
[Cost Containment Main Table (fixed)].FirstName, [Cost Containment Main Table
(fixed)].DateOfService, [Cost Containment Main Table (fixed)].AmountBilled
FROM [Cost Containment Main Table (fixed)]
WHERE ((([Cost Containment Main Table (fixed)].[Par Facility Provider]) Like
"Fairview*") AND (([Cost Containment Main Table (fixed)].DateOfService)
Between "7/1/2008" And "09/30/2008"));
Thanks.
Joe
The SQL statement beloe was supposed to select dates between July1, 2008 and
Sept 30, 2008 but it is returning all dates even from 2007. What do I need to
fix in the statement to get the dates I specified?
SELECT [Cost Containment Main Table (fixed)].AuditNumber, [Cost Containment
Main Table (fixed)].[Par Facility Provider], [Cost Containment Main Table
(fixed)].[Imaging Number], [Cost Containment Main Table (fixed)].LastName,
[Cost Containment Main Table (fixed)].FirstName, [Cost Containment Main Table
(fixed)].DateOfService, [Cost Containment Main Table (fixed)].AmountBilled
FROM [Cost Containment Main Table (fixed)]
WHERE ((([Cost Containment Main Table (fixed)].[Par Facility Provider]) Like
"Fairview*") AND (([Cost Containment Main Table (fixed)].DateOfService)
Between "7/1/2008" And "09/30/2008"));
Thanks.
Joe