I have the following statement:
SELECT States.st, Licenses.[Expiration Date], IIf([Expiration Date]<Date()," Not Compliant","Compliant") AS Compliant
FROM States INNER JOIN Licenses ON States.st_ID = Licenses.st_ID;
What I need to do now is count the number of compliant returns with-in each...