2014-12-16 10 views
7

Poszukuję metodologii porównywania różnicy między 2 wierszami w tej samej tabeli. Z tego co tu znalazłem (How to get difference between two rows for a column field?) jest prawie to, co chciałem. Zrobiłem następujący kod:Suma obliczeniowa sql między 2 wierszami

create table #tmpTest 
(
    id_fund int null, 
    id_ShareType int null, 
    ValueDate datetime null, 
    VarNAV float null, 
    FundPerf float null, 
) 

insert into #tmpTest(id_fund, id_ShareType, ValueDate, VarNAV) 
values(1,1,'20140101',100) 
insert into #tmpTest(id_fund, id_ShareType, ValueDate, VarNAV) 
values(1,1,'20140102',20) 

update #tmpTest 
set hrc.FundPerf = (isnull(hrn.VarNAV, 0) - hrc.VarNAV)/hrc.VarNAV 
from #tmpTest hrc 
left join #tmpTest hrn on hrn.ValueDate = (select min(ValueDate) from #tmpTest where ValueDate > hrc.ValueDate) 
and hrc.id_fund = hrn.id_fund and hrc.id_ShareType = hrn.id_ShareType 

Mój problem jest, że wynik mam computing zaczyna się na linii 1, zamiast linii 2.

wynikające z Umowy, w wyniku jestem uzyskanie:

id_fund id_ShareType ValueDate   VarNAV      FundPerf      
------- ------------ ------------------- ------- ----------------------------- 
     1   1 2014-01-01 00:00:00  100       -0.8 
     1   1 2014-01-02 00:00:00  20       -1 

natomiast chciałbym go mieć w ten sposób:

id_fund id_ShareType ValueDate   VarNAV      FundPerf      
------- ------------ ------------------- ------- ----------------------------- 
     1   1 2014-01-01 00:00:00  100       -1 
     1   1 2014-01-02 00:00:00  20       -0.8 

Co jest nie tak z moim podejściem?

+4

Dlaczego nie można użyć 'LAG' i funkcje "LEAD"? – Kermit

Odpowiedz

1

Nie ograniczasz minimum do tego samego funduszu i typu akcji.

update #tmpTest 
    set hrc.FundPerf = (isnull(hrn.VarNAV, 0) - hrc.VarNAV)/hrc.VarNAV 
    from #tmpTest hrc left join 
     #tmpTest hrn 
     on hrn.ValueDate = (select min(ValueDate) 
          from #tmpTest tt 
          where tt.ValueDate > hrc.ValueDate and 
            hrc.id_fund = tt.id_fund and hrc.id_ShareType = tt.id_ShareType 
          ) and 
      hrc.id_fund = hrn.id_fund and hrc.id_ShareType = hrn.id_ShareType ; 
+0

Masz rację !!! Bardzo dziękuję :) – sa6

0

Spróbuj tego:

update hrn 
set FundPerf = (isnull(hrn.VarNAV, 0) - hrc.VarNAV)/hrc.VarNAV 
from #tmpTest hrc 
left join #tmpTest hrn on hrn.ValueDate = (select min(ValueDate) from #tmpTest where ValueDate > hrc.ValueDate) 
and hrc.id_fund = hrn.id_fund and hrc.id_ShareType = hrn.id_ShareType 
+0

Ogranicz także minimum do finansowania i udostępniania typu zgodnie z sugestią @Gordon Linoff – Russop

+0

Rzeczywiście masz rację: powinienem ograniczyć. Niemniej jednak nie rozwiązuje to mojego problemu. – sa6

+0

To robi. Jeśli zaktualizujesz hrn zamiast hrc, zwracane są wyrównane do dat (wydajność pierwszego dnia wynosi NULL). – Russop

0

Hi można to osiągnąć stosując przez CTE (Common Expression tabeli)

create table #tmpTest 
(
    id_fund int null, 
    id_ShareType int null, 
    ValueDate datetime null, 
    VarNAV float null, 
    FundPerf float null, 
) 

insert into #tmpTest(id_fund, id_ShareType, ValueDate, VarNAV) 
values(1,1,'20140101',100) 
insert into #tmpTest(id_fund, id_ShareType, ValueDate, VarNAV) 
values(1,1,'20140102',20) 

;With tbl as 

(Select Row_Number() OVER (Order by T.ValueDate) as RowNumber,* From #tmpTest T )SELECT Cur.*,(ISNULL(Cur.VarNAV,0) - ISNULL(Prv.VarNAV,0))/Prv.VarNAV as [Col Name] FROM tbl Cur LEFT OUTER JOIN tbl Prv ON Cur.RowNumber = Prv.RowNumber+1 ORDER BY Cur.ValueDate

+0

Podświetlenie kodu i naciśnięcie Ctrl + K spowoduje jego sformatowanie, co ułatwi czytanie - patrz [jak sformatować tutaj] (http://meta.stackexchange.com/a/22189) – AHiggins