This Access sql returns two columns. The first column displays each unique value in field1. The second column displays totals for each unique value in field1.
SELECT
table1.field1,
Count(table1.field1) AS [total]
FROM table1
GROUP BY table1.field1;
With Access it is quite helpful to use the query design window, even if you already know sql.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.