Maybe I'm missing the point but...
Select COUNT(ColName) From Table
Where
Event = 'x'
If you want the number of each event then
Select COUNT(ColName), EventName From Table
Where
Event = 'x'
Group By EventName
Cheers,
Crispin
Cheers,CrispinI can't die, there are too many people who still have to meet me!It's not a bug, SQL just misunderstood me!