I need to write a query that will allow me to count distinct values. My SQL book says you can do this by:
SELECT count(DISTINCT *)
But it doesn't work in access, i get an error until i put another set of parentheses around distinct and then it doesn't work it still counts items that are the...