I'm trying to get an Average of a count in an SQL statement. Here is the statement.
SELECT SFC, COUNT(SFC) as NumberSfc
FROM plr_data
WHERE ASSY="50060D" AND EVENT_DATE>=#5/23/2011# AND NC_CODE = "FF" AND PROCESS = "1-475-MV1"
GROUP BY SFC;
this produces a table output like:
SFC NumberSFC
S01234 20
S05463 1
S05463 17
...
I want to Average the NumberSFC column. I'm sure it's easy but my brain is pudding right now (for other reasons)....Thanks
Ernest
Be Alert, America needs more lerts
SELECT SFC, COUNT(SFC) as NumberSfc
FROM plr_data
WHERE ASSY="50060D" AND EVENT_DATE>=#5/23/2011# AND NC_CODE = "FF" AND PROCESS = "1-475-MV1"
GROUP BY SFC;
this produces a table output like:
SFC NumberSFC
S01234 20
S05463 1
S05463 17
...
I want to Average the NumberSFC column. I'm sure it's easy but my brain is pudding right now (for other reasons)....Thanks
Ernest
Be Alert, America needs more lerts