access查询表中的显示发生次数?

lpwwtiir  于 2021-08-01  发布在  Java
关注(0)|答案(1)|浏览(297)

我需要一个查询来查找表中项出现的次数。有人能帮我解决这个问题吗。

r6hnlfcb

r6hnlfcb1#

ms access中的on方法是一个相关子查询:

select t.*,
       (select count(*) from t as t2 where t2.fpid = t.fpid and t2.id <= t.id) as counter
from t;

相关问题