我需要一个查询来查找表中项出现的次数。有人能帮我解决这个问题吗。
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;
1条答案
按热度按时间r6hnlfcb1#
ms access中的on方法是一个相关子查询: