Counting entries

Sebastian

New member
Local time
Today, 20:49
Joined
Jun 12, 2006
Messages
5
I want to produce a report which gives the number of each of six possible values in a single field in a table. I dont see how to do this - I assume it involves the Count.
Any help with this trivially simple query gratefully received.
Sebastian
 
Try:

SELECT FieldName, Count(FieldName) AS HowMany
FROM TableName
GROUP BY FieldName
 
Thanks. Easy when you know how!
 

Users who are viewing this thread

Back
Top Bottom