Counting Frequencies of an occurrence

  • Thread starter Thread starter bccdaniel
  • Start date Start date
B

bccdaniel

After a join, database has numerous occurrences of a number. I would
like to count the number of occurrences of each number in a frequency
table and if there were no matching numbers, ie a field is null (how
many times does that occur.)
Thank you
 
SELECT YourField, Count(*) as FreqCount
FROM YourTable
GROUP BY YourField

--
John Spencer
Access MVP 2002-2005, 2007
Center for Health Program Development and Management
University of Maryland Baltimore County
..
 
Back
Top