Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
8answers
12k views

Calculate a Running Total in SqlServer

Imagine the following table (called TestTable): id somedate somevalue -- -------- --------- 45 01/Jan/09 3 23 08/Jan/09 5 12 02/Feb/09 0 77 14/Feb/09 7 39 ...
5
votes
3answers
318 views

subquery or leftjoin with group by which one is faster?

i have to show running total with the total column in my application ... so i have used the following queries for finding the running total... and i find that both are working as per my need . in one ...
5
votes
2answers
1k views

SQLite: accumulator (sum) column in a SELECT statement

I have a table like this one: SELECT value FROM table; value 1 3 13 1 5 I would like to add an accumulator column, so that I have this result: value accumulated 1 1 3 4 13 17 1 ...
4
votes
7answers
481 views

List comprehension for running total

I want to get a running total from a list of numbers. For demo purposes, I start with a sequential list of numbers using range a = range(20) runningTotal = [] for n in range(len(a)): new = ...
4
votes
6answers
4k views

SQL query for cumulative frequency of list of datetimes

I have a list of times in a database column (representing visits to a website). I need to group them in intervals and then get a 'cumulative frequency' table of those dates. For instance I might ...
3
votes
4answers
47 views

How to calculate overlapping subscription days from orders with sql-server

I have an ordertable with orders. I want to calculate the amount of subscriptiondays for each user (preffered in a set-based way) for a specific day. create table #orders (orderid int, userid int, ...
3
votes
3answers
1k views

Calculated control on subform based on current record

I have the following: main form "customer" from a "customer" table. subform "invoices" with fields "invoice date", "invoice amount" "customer id" etc. from a table "invoices" whenever user clicks or ...
2
votes
3answers
1k views

Running total by grouped records in table

I have a table like this (Oracle, 10) Account Bookdate Amount 1 20080101 100 1 20080102 101 2 20080102 200 1 20080103 -200 ...
1
vote
1answer
77 views

accumulated sum in query

How is it possible to return rows with an accumulate sum for a row bigger or smaller than a specified value? table: id | count ----------- 1 | 30 2 | 10 3 | 5 4 | 20 5 | 15 query: SELECT id, ...
1
vote
2answers
74 views

Javascript Radio / Checkbox Problems

I have this simple script. I'm trying to get the checked values and add them to a running total that's in the diabled input box. I know it's getting checked option but it's not updating to the input ...
1
vote
3answers
112 views

Need help with very simple running total for javascript

So real simple problem that I just can't seem to figure out. I'm just learning so sorry if this is obvious. Has to out put 7 times tables and give a running total at the end. Here's what I have: ...
1
vote
1answer
255 views

Running Sums for Multiple Categories in MySQL

I have a table of the form Category Time Qty A 1 20 B 2 3 A 3 43 A 4 20 B 5 ...
1
vote
2answers
66 views

db optimization - have a total field or query table?

I have an app where users get points for actions they perform - either 1 point for an easy action or 2 for a difficult one. I wish to display to the user the total number of points he got in my app ...
1
vote
2answers
213 views

SQL Audit Log Running Totals

I have a table with an audit log: BugId Timestamp Status 1 2010-06-24 10:00:00 open 2 2010-06-24 11:00:00 open 1 2010-06-25 12:00:00 ...
1
vote
3answers
589 views

Oracle(10) SQL: calculating final sum depending on two field

First the disclaimer: I never learnt any programming in school, and just have to deal with various SQL problems (too). So now I've got two tables, TABLE1: ACCNO BAL1 BAL2 11111 20 10 And ...
1
vote
3answers
708 views

Improve SQL query: Cumulative amounts over time

Suppose I have a SQL table of Awards, with fields for Date and Amount. I need to generate a table with a sequence of consecutive dates, the amount awarded in each day, and the running (cumulative) ...
0
votes
2answers
56 views

Read corresponding value in PHP and add to running sum

I would like to have each word in a string cross-referenced in a file. So, if I was given the string: Jumping jacks wake me up in the morning. I use some regex to strip out the period. Also, the ...
0
votes
0answers
202 views

Optimizing a Vertica SQL query to do running totals

I have a table S with time series data like this: code: key day delta For a given key, it's possible but unlikely that days will be missing. I'd like to construct a cumulative column from the ...
0
votes
1answer
227 views

Conditional running total across columns in SQL

I have this data: Player StartBalance Day1Earned Day1Spent Day2Earned Day2Spent Day3Earned Day3Spent Alex 10 0 0 3 -5 3 ...
0
votes
4answers
117 views

Running totals to work throughout classes in java?

I am current writing a program that includes a test. When the user clicks submit it either prints out correct or incorrect and then goes to a different class. As well as doing this i want if the ...
0
votes
4answers
532 views

Calculate a running total during a for loop - Python

Edit: Below is my working code based on the feedback/answers I recieved. This question stems from my previous question that came up while learning Python/CS using open courseware from MIT. --See my ...
0
votes
1answer
189 views

How to create a “meter bar” in Flash?

I am trying to create a "meter bar" in Flash. I am creating an interactive house in Flash. Inside the house are objects that consume power. (ie. light bulb, computer, stove, etc...) Those objects are ...
0
votes
2answers
464 views

SQL select row-wise increase in amount of running total column

Suppose I have a table with columns (DayId, RunningTotal): DayId RunningTotal --------------------- 1 25 3 50 6 100 9 200 10 250 How can I select the DayId and ...
0
votes
2answers
462 views

Can somebody explain the running total and SQL self-join in this tutorial to me?

I was reading over the tutorial here: http://www.1keydata.com/sql/sql-running-totals.html and it all made sense until it suddenly got extremely ridiculously unbelievably complicated when it got to ...
-3
votes
5answers
97 views

Running total for list of dict

Have a python list of dict as following: Dict1 = [{'date': 1, 'name': 'xyz', 'qty': 100}, {'date': 1, 'name': 'xyz', 'qty': 200}, {'date': 1, 'name': 'xyz', 'qty': 300}, ...