Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6726555
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:56:28+00:00 2026-05-26T09:56:28+00:00

Possible Duplicate: Calculate a Running Total in SqlServer Consider this data Day | OrderCount

  • 0

Possible Duplicate:
Calculate a Running Total in SqlServer

Consider this data

     Day | OrderCount
       1       3
       2       2 
       3       11
       4       3
       5       6

How can i get this accumulation of OrderCount(running value) resultset using T-SQL query

      Day | OrderCount | OrderCountRunningValue
       1        3            3
       2        2            5
       3        11           16
       4        3            19
       5        6            25

I Can easily do this with looping in the actual query (using #table) or in my C# codebehind but its so slow (Considering that i also get the orders per day) when im processing thousand of records so i’m looking for better / more efficient approach hopefully without loops something like recursing CTE or something else.

Any idea would be greatly appreciated. TIA

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T09:56:28+00:00Added an answer on May 26, 2026 at 9:56 am

    As you seem to need these results in the client rather than for use within another SQL query, you are probably better off Not doing this in SQL.

    (The linked question in my comment shows ‘the best’ option within SQL, if that is infact necessary.)

    What may be recommended is to pull the Day and OrderCount values as one result set (SELECT day, orderCount FROM yourTable ORDER BY day) and then calculate the running total in your C#.

    Your C# code will be able to iterate through the dataset efficiently, and will almost certainly outperform the SQL approaches. What this does do, is to transfer some load from the SQL Server to the web-server, but at an overall (and significant) resource saving.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: How do I calculate a running total in SQL without using a
Possible Duplicate: How do I calculate someone's age in C#? Maybe this could be
Possible Duplicate: Running total by grouped records in table I am trying to put
Possible Duplicate: How do I calculate the last day of the month in SQL?
Possible Duplicate: Calculate Bounding box coordinates from a rotated rectangle, Picture inside. I have
Possible Duplicate: How to calculate the difference between two dates using PHP? I have
Possible Duplicate: How do I calculate relative time? I am searching for a custom
Possible Duplicate: How do I calculate someone’s age in C#? I want to calculate
Possible Duplicate: In C++, How to get MD5 hash of a file? I am
Possible Duplicate: How can I determine if a geopoint is displayed in currently viewable

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.