我在 MSAccess 数据库中有数据库文件..
我在 ACCESS 数据库中使用了以下查询:
Select COUNT(Distinct(PRS.prs_personId)) From tb_personDepartment
但它给出了错误说:UnDefined function Distinct in expression
我也试过以下:
Select Distinct(COUNT(PRS.prs_personId)) From tb_personDepartment
它可以工作,但没有从数据表中获得不同的 PersonId。
如何在 MS ACCESS 数据库中使用 Distinct 关键字和 Count() 函数?
谢谢...