首页 > 解决方案 > 将同一列中的值与 SQL Server 中的其他列进行比较

问题描述

我有一张如下表

id      ParentName    HandleName       CreatedDate       
===================================================
139       MI          MI-Chart-QL       2018-02-20       
139       MI          MI-chart-act      2018-02-20       
139       MI          MI-chart-act      2018-02-20       
139       CRA         CRA-chart-act     2018-02-20
139       CRA         CRA-Chart-act     2018-02-20

我想添加一个带有值的列 - 如果带有Act的 HandleName 具有与具有QL的 id、CreatedDate 和 ParentName 的 HandleName 相同的 id、CreatedDate 和 ParentName ,那么它是有意或无意的。我正在寻找的决赛桌是

id      ParentName    HandleName       CreatedDate    Intentionally/unintentionally   
====================================================================================
139       MI          MI-Chart-QL       2018-02-20       Intentionally
139       MI          MI-chart-act      2018-02-20       Intentionally
139       MI          MI-chart-act      2018-02-20       Intentionally
139       CRA         CRA-chart-act     2018-02-20       Unintentionally   
139       CRA         CRA-Chart-act     2018-02-20       Unintentionally 
  

带有“CRA-chart-act”的 HandleName 是无意的,因为 ParentName 与“MI-Chart-QL”不匹配

我使用了下面的代码(如果 Row_Number()>2 我可以故意标记它们)但是我如何检查它们的父名称是否相同以有意或无意地标记它们?

Row_Number() over (Partition by id, CreatedDate ORDER BY createdDate asc)

标签: sqlsql-servercountcasewindow-functions

解决方案


您可以使用窗口函数:

select t.*,
    case when max(case when handlename like '%-QL%' then 1 else 0 end)
                  over(partition by id, parentname, createddate) = 1
        then 'Intentionally'
        else 'Unintentionally'
    end as status
from mytable t

推荐阅读