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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T02:31:13+00:00 2026-05-28T02:31:13+00:00

Possible Duplicate: MySQL query that computes partial sums ok, the question is not clear

  • 0

Possible Duplicate:
MySQL query that computes partial sums

ok, the question is not clear at all so the example would be:
i have a table like this:

id     amount

1       1000
2       2500
3       5000

and i need to select from it the following data:

id     oamount     total

1       1000      1000
2       2500      3500
3       5000      8500

i tried this but it is not correct:

    select *,sum(oamount) from `table` 
group by id;

and i can’t figure it out

  • 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-28T02:31:13+00:00Added an answer on May 28, 2026 at 2:31 am

    I’ve answered a very similar where they were trying to get cash flow balances for beginning / ending of each day… Found here

    Yours would be very similar… Prequery the data in the final order you want it (ie: starting ID would be the first of the result set), then apply what you want with MySQL Variables

    select
          PreAgg.ID,
          PreAgg.Amount,
          @PrevBal := @PrevBal + PreAgg.Amount as Total
       from 
          ( select
                  YT.id,
                  YT.amount
               from
                  YourTable YT
               order by
                  YT.id ) as PreAgg,
          ( select @PrevBal := 0.00 ) as SqlVars
    

    I’ve actually kept the pre-aggregate as a query… in case you wanted to actually DO some aggregations like based on transactions on a daily basis, or applied some other WHERE clause. This would allow flexibility to ensure your final output order was prepared BEFORE starting your @PrevBal accumulation.

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

Sidebar

Related Questions

Possible Duplicate: MySQL query using an array Passing an array to mysql I have
Possible Duplicate: How can I count the numbers of rows that a mysql query
Possible Duplicate: MySQL check if a table exists without throwing an exception I have
Possible Duplicate: Mysql Offset Infinite rows Is it possible to specify a query in
Possible Duplicate: MySQL query using an array How to use an array of values
Possible Duplicate: MySQL delete row from multiple tables I have 5 tables: members member_videos
im trying to create a sql query, that will detect (possible) duplicate customers in
Possible Duplicate: Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result okay so
Possible Duplicate: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in php
Possible Duplicate: ClassNotFoundException com.mysql.jdbc.Driver I have included the mysql-connector-java-5.1.16-bin.jar into my Eclipse library, this

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.