Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / database / SQL-Server

Query for running total in SQL Server

5.00/5 (1 vote)
25 Aug 2011CPOL 9.3K  
I guess this is more faster:SELECT T1.Field1, SUM(T2.Field1) FROM [Table] T1, [Table] T2WHERE T1.Field1 >= T2.Field1GROUP BY T1.Field1

I guess this is more faster:


SQL
SELECT T1.Field1, SUM(T2.Field1)  
FROM [Table] T1, [Table] T2
WHERE T1.Field1 >= T2.Field1
GROUP BY T1.Field1

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)