2012-08-03 36 views
2

按CTE Sql Server 2008计算的总减法总数我需要基于它们的行号的两个值之间的差异。像 enter image description here按照ID#

的CTE返回的数据我想要做的是有2行中rehabWait列(92-32)读60和排三60以及(152-92`)等等,直到有一个在patientid改变。因此,对于第11行,我想让rehabwait成为110(114-4)。查询我会跑起来,但是它返回所有NULLS

with x as 
    (
    SELECT row_number() over (order by patientid, admissiondate, claimsfromdate, datediff(dd,admissiondate, claimsfromdate))as rn, 
    patientid, admissiondate, claimsfromdate, 
      DATEDIFF(dd, admissiondate, claimsfromdate) as rehabWait, hcpcs 
    FROM Claims 
    WHERE hcpcs in ('g0151', '97001', '97002', '9339') and 
      claimsfromdate > admissiondate 
     group by patientid, admissiondate, claimsfromdate, hcpcs 
     --adding this group by clause will keep rehabWait from showing up 
     --however many times they patient has the HCPCS code for rehab 
    ) 


select x.patientid 
     ,x.admissiondate 
     ,x.claimsfromdate 

     ,(select x2.rehabWait-x.rehabwait from x where x.patientid=x2.patientid 
     and x.rn > x2.rn and x.admissiondate=x2.admissiondate and x.claimsfromdate=x2.claimsfromdate 
     ) 
     from x inner join 
     x as x2 on x.patientid=x2.patientid and x.admissiondate=x2.admissiondate and x.claimsfromdate = x2.claimsfromdate 
+0

请参阅我的编辑,我给你的第一个查询并不完全符合你的要求。 – Aushin 2012-08-03 18:01:12

回答

2
with x as 
(
SELECT row_number() over (PARTITION BY patientid order by patientid, admissiondate, claimsfromdate, datediff(dd,admissiondate, claimsfromdate))as rn, 
patientid, admissiondate, claimsfromdate, 
     DATEDIFF(dd, admissiondate, claimsfromdate) as rehabWait, hcpcs 
FROM #Claims 
WHERE hcpcs in ('g0151', '97001', '97002', '9339') and 
     claimsfromdate > admissiondate 
    group by patientid, admissiondate, claimsfromdate, hcpcs 
    --adding this group by clause will keep rehabWait from showing up 
    --however many times they patient has the HCPCS code for rehab 
) 
select x.patientid 
    ,x.admissiondate 
    ,x.claimsfromdate 
    , CASE WHEN x2.rn = 1 
      THEN x.rehabWait 
      ELSE x2.rehabWait - x.rehabWait END AS rehabWait 
    from x INNER join 
    x as x2 on x.patientid=x2.patientid AND CASE WHEN x2.rn = 1 AND x.rn = 1 THEN x2.rn - 1 ELSE x.rn END = x2.rn - 1 

两个CASE语句的选择是确保你得到的第一行。 PARTITION BY确保每个患者ID都在rn = 1时开始上升。

编辑:我给你的第一个查询将失去您的示例中的第1和第10行。

+0

您可能想要编辑JOIN。我不完全确定入场人员是否也必须匹配。 – Aushin 2012-08-03 17:41:28

0

由于康复的重量在增加,你可以做到以下几点:

with x as 
    (
    SELECT patientid, admissiondate, claimsfromdate, 
      DATEDIFF(dd, admissiondate, claimsfromdate) as rehabWait, hcpcs 
    FROM Claims 
    WHERE hcpcs in ('g0151', '97001', '97002', '9339') and 
      claimsfromdate > admissiondate 
     group by patientid, admissiondate, claimsfromdate, hcpcs 
    --adding this group by clause will keep rehabWait from showing up 
    --however many times they patient has the HCPCS code for rehab 
    ) 
select patientid, admissiondate, claimsfromdate, 
     (RehabWait - prevRehabWait), hcpcs 
from (select patientid, admissiondate, claimsfromdate, hcpcs, RehabWait, 
      (select max(RehabWait) 
       from x x2 
       where x2.patientid = x.patientid and x2.claimsfromdate < x.claimsfromdate 
      ) as prevRehabWait 
     from x 
    ) t 

你不需要ROW_NUMBER()这一点。相关的子查询可以在日期字段上工作。