SQL用于比较表中的记录(状态更改)

时间:2012-12-04 17:36:23

标签: sql teradata

我有一张包含索赔历史的表格。基本上我在看状态变化和日期。每当有人更新声明时,新行都会加载到我在下面显示的表格中。我想要获得的是“c_sta_clm”列的所有状态更改我希望能够捕获日期“row_begin_dt”并且状态发生变化(PC到AC)& (AC to TE)。

非常感谢任何关于如何使这个变得简单的指导。我正在考虑制作两个易变的表并加入C_CLM,获取最小状态日期并比较等等......

row_begin_dt                user                    c_clm          c_sta_clm
2009-10-08  ?       C5S2M                         09050012            PC
2009-10-24  ?       C5S2M                         09050012            AC
2009-10-28  ?       C1CMH                         09050012            AC
2010-10-30  ?       C1CMH                         09050012            AC
2011-05-19  ?       A9709                         09050012            AC
2011-06-09  ?       C6JEC                         09050012            AC
2011-10-07  ?       DAJ07                         09050012            TE
2011-11-04  ?       DAJ07                         0905001             TE

3 个答案:

答案 0 :(得分:2)

这可以为您提供2009-10-24和2011-10-07的记录。

select
    row_begin_dt,
    user,
    c_clm,
    c_sta_clm,
    -- Find the c_sta_clm of the previous row
    max(c_sta_clm) over (partition by c_clm order by row_begin_dt rows between 1 preceding and 1 preceding) as prev_c_sta_clm
from claims
-- Include only records which have a c_sta_clm different to that of the previous row
qualify c_sta_clm <> prev_c_sta_clm

答案 1 :(得分:1)

一种常用方法是使用相关子查询:

select
from (select c.*,
             (select top 1 from claims c2 where c2.c_clm = c.c_clm a and c2.row_begin_dt > c.row_begin_dt order by row_begin_dt
             ) as next_sta_clm
      from claim c2
     ) c
where next_sta_clm <> c_sta_clm

在许多数据库中,您可以使用laglead函数执行相同操作,但并非所有数据库都支持它们。

答案 2 :(得分:0)

这样的东西
Select ToRecord.row_begin_dt From ClaimHistory FromRecord
inner join ClaimHistory ToRecord On ToRecord.c_clm = FromRecord.c_clm and ToRecord.row_begin_dt > FromRecord.row_begin_dt and ToRecord.c_sta_claim = 'AC'
Where FromRecord.c_sta_claim = 'PC'

将PC送到AC,不知道用户列是否显着,但是将其固定在应该是微不足道的。看你没有说出哪个DBMS,sql可能需要一个旋转。

此外,这会有点像PC到XX到AC的东西,你没有说什么。