pullingteeth
Programmer
I know Access can't do:
select count(distinct blah) from ...
Is there any workaround APART from creating a query that just does:
select distinct blah from...
and then another which counts the results from the prior query? I.e., is there an all in one SQL solution to this problem?
Thanks!
select count(distinct blah) from ...
Is there any workaround APART from creating a query that just does:
select distinct blah from...
and then another which counts the results from the prior query? I.e., is there an all in one SQL solution to this problem?
Thanks!