Click here to Skip to main content
15,888,984 members
Articles / Database Development / SQL Server

Query for running total in SQL Server

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
25 Aug 2011CPOL 9.1K   1  
I guess this is more faster:SELECT T1.Field1, SUM(T2.Field1) FROM [Table] T1, [Table] T2WHERE T1.Field1 >= T2.Field1GROUP BY T1.Field1

Views

Daily Counts

License

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


Written By
Chief Technology Officer IntegCubes
Pakistan Pakistan
More than 18 years of experience in software development. Worked on various project in different phases.

Comments and Discussions