When using GROUP BY, any counting, summing, averaging,
et al., is started over and a new row is generated for each distinct value.
So if you had
Code:
[u]fldSTATE</u>
WA
GA
OR
GA
OR
then, with
Code:
SELECT fldSTATE, COUNT(fldSTATE)
you would get:
Code:
fldSTATE COUNT(fldSTATE)
-------- ---------------
GA 2
OR 2
WA 1