View Full Version : Total/Sum


brin
01-10-2002, 07:12 AM
I can do a count using "count()" etc and this is fine but alongside this i would like to use total but i keep getting error reports. Can anyone help???

Pat Hartman
01-11-2002, 11:32 AM
Select SomeField, Count(*) As Total
From YourTable
Group by SomeField;