Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

TSQL-2008 SUM(X) OVER (PARTIZIONE... ORDINE PER CLAUSOLA)

Semplice INNER JOIN dovrebbe fare il trucco. A meno che non ti stia fraintendendo, quello che vuoi è un totale parziale, giusto?

Questo esempio crea una tabella fittizia con dati fittizi, quindi utilizza un inner join per il totale parziale. Dal punto di vista delle prestazioni, l'espressione della tabella comune è probabilmente più efficiente. Ma per semplicità, l'unione interiore è preferibile.

/* Dummy table */    

create table testing1
(col1 int not null identity(1,1),
col2 varchar(5),
col3 int)


insert into testing1
values ('a', 10), ('a', 20), ('a', 30), ('b', 40), ('b', 50)

/* Running total example */

SELECT a.col1
           , a.col2
           , a.col3
           , SUM(b.col3) AS total

FROM testing1 a INNER JOIN testing1 b
     ON  a.col1 >= b.col1
     AND a.col2 = b.col2

GROUP BY a.col1, a.col2, a.col3
ORDER BY a.col1



/* Edit to include Output */
col1    col2    col3    total
1   a   10  10
2   a   20  30
3   a   30  60
4   b   40  40
5   b   50  90