Is it possible to do a SELECT DISTINCT, to select all distinct records, but also select how many of each distinct record there are?
table data like:
1, cat
2, dog
3, cat
4, dog
5, dog
and get a recordset with:
cat, 2
dog, 3
thanks in advance for any help.