Ok, so I'm familiar with the group by clause. I'm trying to condense a large table of records and I want to find out what values are in a field in a given group.
I know I can choose
COUNT(distinct FIELDNAME) AS distinctItems
and distinctItems will give me a count of unique values.
Is there any formula to return a LIST of those values in the format of say
'Acura', 'Buick', 'Chevrolet', ..
This would really help my analysis of the table.
Sincerely,
Sam Fullman