I have a table that has the following fields:
Name | Category | Description
I want to select all categories and display them like:
Category | Category Count
So how would I do a
SELECT Category FROM MyTable
UNION
SELECT COUNT(Category)
but have the count show the specific count for that row?