Als u MSSQL2012
gebruikt of hoger kunt u OVER
. gebruiken clausule.
SELECT t2.id, t2.value, SUM(t2.value) OVER (ORDER BY t2.id) as [Result]
FROM Test01 t2
ORDER BY t2.id;
Als u MSSQL2012
gebruikt of hoger kunt u OVER
. gebruiken clausule.
SELECT t2.id, t2.value, SUM(t2.value) OVER (ORDER BY t2.id) as [Result]
FROM Test01 t2
ORDER BY t2.id;