Om du använder MSSQL2012
eller högre kan du använda OVER
klausul.
SELECT t2.id, t2.value, SUM(t2.value) OVER (ORDER BY t2.id) as [Result]
FROM Test01 t2
ORDER BY t2.id;
Om du använder MSSQL2012
eller högre kan du använda OVER
klausul.
SELECT t2.id, t2.value, SUM(t2.value) OVER (ORDER BY t2.id) as [Result]
FROM Test01 t2
ORDER BY t2.id;