请大家帮忙,看看这条SQL语句,难道是sql server与access支持SQL的程度不同?困惑! (50分)

H

holyman

Unregistered / Unconfirmed
GUEST, unregistred user!
请看下面的sql: select count(distinct title) from employees
在SQL SERVER中可以执行,在ACCESS中为何报错?谢谢
 
ACCESS不是标准SQL数据库,有些SQL命令它不支持!
 
那么同样的功能要在ACCESS中怎样写呢?
 
select count(*) from (
select title,count(title) group by title
);
 
顶部