Hello,
I'm getting the following error when using this query:
Error:
"You tried to execute a query that does not include the specified expression 'Type' as part of an aggregate function."
Any ideas?
Thanks.
Hello,
I'm getting the following error when using this query:
Error:
"You tried to execute a query that does not include the specified expression 'Type' as part of an aggregate function."
Any ideas?
Thanks.
Does this do what you want?
SELECT DISTINCT [Type], COUNT([Type]) AS Total
FROM [Sale Property]
GROUP BY [Type]