1

我有一张表,其中有两列,一列是日期时间列 (Test_Complete),另一列是字母数字记录 ID 列 (RecordID)。

我需要准备按月处理的记录 ID 计数。我已经为此创建了一个查询。

SELECT (Format([Test_Complete],"mmm"" '""yy")) AS Evaluation_Month, 
Count(tbl_TestStatus.Record_ID) AS CountOfRecord_ID
FROM tbl_TestStatus
WHERE (((tbl_TestStatus.[Test_Complete]) Is Not Null))
GROUP BY (Format([Test_Complete],"mmm"" '""yy")),
(Year([Test_Complete])*12+Month([Test_Complete])-1);

此查询运行良好,并给我这样的输出:

Evaluation_Month     CountOfRecord_ID
------------------   -----------------
 Jan'12                   20
 Feb'12                   90
 Mar'12                   40
 Apr'12                   50

现在我需要计算 CountOfRecord_ID 值相对于每个 Evaluation_Month 的百分比,并将百分比附加到 Evaluation_Month 数据中的值。

在上面的结果集中,所有 CountOfRecord_ID 的总和是 200。所以需要计算百分比,将 200 视为 100%,这样我的结果如下所示:

Evaluation_Month     CountOfRecord_ID
------------------   -----------------
 Jan'12 (10%)                20
 Feb'12 (45%)                90
 Mar'12 (20%)                40
 Apr'12 (25%)                50

如何修改我的 SQL 查询来实现这一点?

4

1 回答 1

3

您只需要在select语句中添加一个包含记录总数的“子查询字段”。像这样的东西:

SELECT 
    (Format([Test_Complete],"mmm"" '""yy")) AS Evaluation_Month, 
    Count(tbl_TestStatus.Record_ID) AS CountOfRecord_ID,
    Count(tbl_TestStatus.Record_ID) / (select count(tbl_testStatus.recordId
     from tbl_testStatus
     where tbl_testStatus.test_complete is not null) as percent
FROM 
    tbl_TestStatus
WHERE 
    (((tbl_TestStatus.[Test_Complete]) Is Not Null))
GROUP BY 
    (Format([Test_Complete],"mmm"" '""yy")),
    (Year([Test_Complete])*12+Month([Test_Complete])-1);
于 2013-02-28T06:14:16.487 回答