Mike Hughes
Registered User.
- Local time
- Today, 23:53
- Joined
- Mar 23, 2002
- Messages
- 493
I'm trying to count the number of cases where the license was suspended between two dates. I just want one number returned but I keep getting a list of numbers (i'm guessing they correspond to the dates)
Is there a way to do this?
SELECT
Count(LICSUSP.CASEID) AS CountOfCASEID
FROM LICSUSP
WHERE
LICSUSP.CERTIFIEDDATE>=[START DATE] And LICSUSP.CERTIFIEDDATE<=[END DATE]
GROUP BY LICSUSP.CERTIFIEDDATE
Is there a way to do this?
SELECT
Count(LICSUSP.CASEID) AS CountOfCASEID
FROM LICSUSP
WHERE
LICSUSP.CERTIFIEDDATE>=[START DATE] And LICSUSP.CERTIFIEDDATE<=[END DATE]
GROUP BY LICSUSP.CERTIFIEDDATE