A
電腦A
電腦A
光盤B
光盤A
手機B
手機C
如表,僅有一列A,我想用access實現:
查詢出開頭N個字符重復的個數,如N=2,則返回:
A count
電腦 2
光盤 2
手機 2
我的語句:select A,count(A) as count where conut(left(A,2))=2,報錯說where 不能有聚合函數,該怎麼寫?
select left(A,2),COUNT(*) from 表 group by left(A,2) having count(*)=2