你这个问题我测试过,access 里面的distinct是不能这样是用的啊!
我测试用group by 试过,可以分类统计.
select count([字段名]) as [字段名] from [表名]
group gy [字段名]
完全可以出你想要的结果!
access其实很好用的
SELECT count(distinct 字段名) FROM table
跟Top连的话
SELECT count top 10 字段名 FROM table
count(distinct 字段名)
distinct和字段名间有个空格