Select 结果基于最近的日期 window

Select results based on nearest date window

我有一个 SQL 服务器 table 如下。我想按姓名和考试地点分组,根据上述分组按日期升序作为分区。

现在提供 eg:4 天的可配置 window。在下面 table 如果第一次考试的日期是 2019 年 2 月 1 日(2 月 1 日)- 其分数已被计算,并且在接下来的 4 天内 window 重新计算的任何其他测试分数均不予考虑。如果记录也落在已排除项目示例行 id - 4 的 4 天 window 内,则也应排除。

非常感谢任何针对此逻辑的 SQL 语句。

CREATE TABLE test(  
    [recordid] int IDENTITY(1,1) PRIMARY KEY,
    [name] [nvarchar](25) NULL,
    [testcentre] [nvarchar](25) NULL,
    [testdate] [smalldatetime] NOT NULL,
    [testscore] [int],
    [Preferred_Output] [int],
    [Result] [nvarchar](75) NULL
)

GO
INSERT INTO test
           (
    [name],
    [testcentre],
    [testdate],
    [testscore],
    [Preferred_Output],
    [Result]  )
    VALUES
('George','bangalore',' 02/01/2019',1,1,'Selected as first item -grouped by name and location'),
('George','bangalore',' 02/02/2019',0,0,'ignore as within 4 days'),
('George','bangalore',' 02/04/2019',1,0,'ignore as within 4 days'),
('George','bangalore',' 02/06/2019',3,0,'ignore as within 4 days from already ignored item -04-02-2019'),
('George','bangalore',' 02/15/2019',2,2,'Selected as second item -grouped by name and location'),
('George','bangalore',' 02/18/2019',5,0,'ignore as within 4 days of previous'),
('George','Pune',' 02/15/2019',4,3,'Selected as third item'),
('George','Pune',' 02/18/2019',6,0,'ignore as within 4 days of previous'),
('George','Pune',' 02/19/2019',7,0,'ignore as within 4 days of previous'),
('George','Pune',' 02/20/2019',8,0,'ignore as within 4 days of previous')

GO
select * from test
GO



+----------+--------+------------+------------+-----------+------------------+
| recordid |  name  | testcentre |  testdate  | testscore | Preferred_Output |
+----------+--------+------------+------------+-----------+------------------+
|        1 | George | bangalore  | 02/01/2019 |         1 |                1 |
|        2 | George | bangalore  | 02/02/2019 |         0 |                0 |
|        3 | George | bangalore  | 02/04/2019 |         1 |                0 |
|        4 | George | bangalore  | 02/06/2019 |         3 |                0 |
|        5 | George | bangalore  | 02/15/2019 |         2 |                2 |
|        6 | George | bangalore  | 02/18/2019 |         5 |                0 |
|        7 | George | Pune       | 02/15/2019 |         4 |                3 |
|        8 | George | Pune       | 02/18/2019 |         6 |                0 |
|        9 | George | Pune       | 02/19/2019 |         7 |                0 |
|       10 | George | Pune       | 02/20/2019 |         8 |                0 |
+----------+--------+------------+------------+-----------+------------------+

我认为这不需要递归查询。您想比较 连续记录 的日期,所以这是一种 gaps-and-island 问题,需要确定每个岛的起点。

Window 函数可以做到这一点:

select t.*,
    case when lag_testdate is null or testdate > dateadd(day, 4, lag_testdate)
        then testscore
        else 0
    end new_core
from (
    select t.*, lag(testdate) over(partition by name, testcentre order by testdate) lag_testdate
    from test t
) t

Demo on DB Fiddle