Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT A.Num2Sum, Sum(B.Num2Sum) AS RunSum
FROM tblSeqNums AS A
INNER JOIN tblSeqNums AS B ON A.Num2Sum >= B.Num2Sum
GROUP BY A.Num2Sum;