J
JustinP
I need to do a count of a grouped by field. Is this possible?
i.e. Table:
Property Owner
1 Bob
2 Alan
3 Alan
4 Bob
5 Bob
6 Bob
Group By Owner:
Alan
Bob
Count of Group By:
2
How do I write the count of group by in SQL?
i.e. Table:
Property Owner
1 Bob
2 Alan
3 Alan
4 Bob
5 Bob
6 Bob
Group By Owner:
Alan
Bob
Count of Group By:
2
How do I write the count of group by in SQL?