L
lavanya
I use access 2000 and have the following query
SELECT count(distinct book_num), county
FROM TblSAIC_Total_Log
group by county;
this gives me an error
'syntax error (missing operator) in query expression 'count
(distinct book_num)'
the same query goes through without the count aggregate
function.
would appreciate any help.
SELECT count(distinct book_num), county
FROM TblSAIC_Total_Log
group by county;
this gives me an error
'syntax error (missing operator) in query expression 'count
(distinct book_num)'
the same query goes through without the count aggregate
function.
would appreciate any help.