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 8482845
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T19:55:16+00:00 2026-06-10T19:55:16+00:00

I have a table that I want to find for each row id the

  • 0

I have a table that I want to find for each row id the amount remaining from the total. However, the order of amounts is in an ascending order.

id   amount
1    3
2    2
3    1
4    5

The results should look like this:

id   remainder
1    10
2    8
3    5
4    0

Any thoughts on how to accomplish this? I’m guessing that the over clause is the way to go, but I can’t quite piece it together.Thanks.

  • 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-06-10T19:55:18+00:00Added an answer on June 10, 2026 at 7:55 pm

    SQL Server 2008 answer, I can’t provide an SQL Fiddle, it seems it strips the begin keyword, resulting to syntax errors. I tested this on my machine though:

    create function RunningTotalGuarded()
    returns @ReturnTable table(
        Id int, 
        Amount int not null, 
        RunningTotal int not null, 
        RN int identity(1,1) not null primary key clustered
    )
    
    as
    begin
    
      insert into @ReturnTable(id, amount, RunningTotal) 
      select id, amount, 0 from tbl order by amount;
    
      declare @RunningTotal numeric(16,4) = 0;
      declare @rn_check int = 0;
    
      update @ReturnTable
        set 
            @rn_check = @rn_check + 1
            ,@RunningTotal = 
            case when rn = @rn_check then
                @RunningTotal + Amount
            else
                1 / 0
            end
            ,RunningTotal = @RunningTotal;     
      return;    
    end;
    

    To achieve your desired output:

    with a as
    (
        select *, sum(amount) over() - RunningTotal as remainder
            , row_number() over(order by id) as id_order
        from RunningTotalGuarded()
    )
    select a.id, amount_order.remainder
    from a
    inner join a amount_order on amount_order.rn = a.id_order;
    

    Rationale for guarded running total: http://www.ienablemuch.com/2012/05/recursive-cte-is-evil-and-cursor-is.html

    Choose the lesser evil 😉

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

Sidebar

Related Questions

I have the data table from the jquery plugin dataTables (http://datatables.net/) that I want
I have a big problem. I want to extract text from html table that
I have a page that creates a table using backbone.js. each table row is
I have a table that i want to highlight during onmouseover/onmouseout. I already know
I use SQL Server 2008 R2 and have a table that I want no
i have a table that has event name and event date. if i want
I have 2 tables with some columns and another table that I want its
I have a table, named ReportingPeriods , that I want to be populated entirely
I have a database table with some rows that I want to fetch using
I have a table in SQL that links to itself through parentID. I want

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.