I have a table that shows the the status of the record as "Not Started", "In Work" or "Complete"
I want to count the number of records that fall into each category. I am currently doing the following SQL:
SELECT tblTest_Case_Status.Test_Case_Status, Count(*) AS NumberofRecords
FROM...