Click here to Skip to main content
15,889,034 members
Articles / Database Development / SQL Server
Alternative
Tip/Trick

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   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

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)


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

 
GeneralReason for my vote of 5 Works just fine. And subqueries rea... Pin
smcnulty20006-Sep-11 21:41
smcnulty20006-Sep-11 21:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.