Is there a way that I can run a query, with a group by and return the values
in a single record?
Example
This query may return 4 records
Select Field1, Count(*)
From Table1
Group By Field 1
Field1: Count(*)
1 25
2 10
3 23
4 4
I want to take those results and return a SINGLE record query with a colume
for each record
Example:
Colume Name --> 1 2 3 4
Record Values --> 25 10 24 4
Is there a way to perform this function?
Any info would be appreciated!
Thanks
Lee