如何根据其他数据的组合对数据求平均?

时间:2019-04-24 04:15:46

标签: ms-access

我有一组包含多行的数据,看起来像这样:

Datere      Profile    P_code   Proctime
----------------------------------------
28/02/19    DIE        B6850    5
28/02/19    DIE        C6851    7
28/02/19    DIE        M0211    9
01/03/19    DIE        H9923    5
01/03/19    DIE        C8850    6
01/03/19    DIFT       OP821    9

我想基于ProctimeDatere的组合来平均Profile。不需要P_code列。

结果应如下所示:

Datere      Profile    Proctime
--------------------------------
28/02/19    DIE        7
01/03/19    DIE        5,5
01/03/19    DIFT       9

有什么办法可以解决这个问题?非常感谢

1 个答案:

答案 0 :(得分:0)

是的,您可以只使用如下查询:

select Datere, Profile, Avg(Proctime) as AvgProc
from YourTableName
Group by Datere, Profile

只知道Access Query Builder也具有一个SQL视图,您可以用来键入该查询。