The 'sum' function which returns the sum of the items in an array.

learn more… | top users | synonyms

0
votes
1answer
66 views

SQL Multi-Table Join with SUM

Hi I'm a beginner with SQL and have a problem. I have the following 5 tables: Branch (Name, City), Employee (EmpNo, Name, Branch), Customer (CustNo, Name, EmpNo), AccountDetails (AccNo, CustNo), ...
3
votes
2answers
32 views

Count row with content for specific number of columns

I can't figure out how to make a column with the count of rows with content of some other columns. Without a count on all columns (*) ------------------------- Output should be (NO COLUMN D): ...
0
votes
0answers
18 views

sum a column where one tuple column ref match

Been stuck on this for a while so any help would be appreciated. I am trying to populate a table which has sums from other VIEWS. job TABLE job_number || total_ labour || total_parts || ...
0
votes
0answers
37 views

How to calculate conditional sum of a part of vector/array based on a 2nd array/vector - Matlab [closed]

I want to get the conditional sum of part of a vector based on a second vector. For example: A = [143 14 -4 299 -29 83 151 190 178 -61 -109 ] and B = [1 1 -1 1 -1 1 1 1 1 -1 -1 ] then I want to ...
-1
votes
3answers
53 views

Multiple sum in SQL query

SELECT sum( plot_status = 'OPEN' ) AS OPEN , sum( plot_status = 'SOLD' ) AS SOLD FROM `tbl_plot` GROUP BY `plot_status This is giving OPEN SOLD 7 0 0 8 How to make it OPEN ...
0
votes
1answer
40 views

How to Sum through Vectors elements

I have a variable quantity that contains two vectors. I want to sum these quantity from i = 1 to n, where n = 100. When the program is ran, I can click on the variables in the work space to see the ...
0
votes
3answers
48 views

MySQL query, COUNT and SUM with two joined tables

I need a little help with a MySQL query. I have two tables one table is a list of backlinks with a is_homepage (bool) flag. The second table is a list of the domains for all of the backlinks, a was ...
3
votes
4answers
113 views

SQL request to find if a period is fully covered

I have a set of periods like: CREATE TABLE `periods` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `start_at` date DEFAULT NULL, `end_at` date DEFAULT NULL, PRIMARY KEY (`id`) ) ...
-1
votes
1answer
20 views

Mysqli, add the contents of a column and display the results

I am trying to add together the contents of 3 columns in my database and then display the results, but I think my code is a bit flaky as it doesn't seem to be doing a lot. I just get an error "Fatal ...
-4
votes
0answers
41 views

Binary Search Tree Sum Function returning memory address

I have a binary search tree written in C. Its an avltree. You run it and start entering integer values. I have created functions within the avltree to find height, element, Min, Max...... When I tried ...
0
votes
2answers
54 views

SQL SUM and nested where clause

I have an SQL that takes an id, a start date and an end date as parameters. I then sum certain that are restricted by the where clause. However I need to also sum the same column that doesnt take ...
0
votes
0answers
8 views

Sum for the range after a particular position provided from the another cell

Example:- Suppose (30,20,5,15,25,10,25) are the values in the First row from Column A to G. And want to add the values on the basis of position provided from a another cell say A3 If Staring index ...
2
votes
3answers
59 views

Moving sum based on dates

I a large dataset that I would like to compute a moving annual sum of a column. It has to be an exact year, so I cannot use rollapply as its based on a specific amount of days and not the actual ...
0
votes
2answers
72 views

c++ summation using for loop and two dimensional array

I'm trying to create a loop that calculates the total book sales for each year. I also need to calculate the total book sales for the last three years. I have worked out how to calculate the sum of ...
0
votes
2answers
48 views

how to subtract two table in php mysql

i have two table in mysql 1st is fees and 2nd is expenses i want fees table subtract in to expenses table how can i do this please help me to fix this issue thanks fees table ...
-2
votes
2answers
42 views

Cant get the right response in oracle [closed]

I am trying to get the Team that the player plays for. Opposition is who they're playing against. Venue tells if it is a home or away match. What i tried was: select * from (select team, max(goals) ...
-4
votes
3answers
64 views

Sum all the elements java arraylist [closed]

If I had: ArrayList<Double> m = new ArrayList<Double>(); with the double values ​​inside, how should I do to add up all the ArrayList elements? public double incassoMargherita() { ...
1
vote
1answer
56 views

Does not get exception when collection is empty with Sum method and Nhibernate

I have a IQueryable with NHibernate and I would like to have an linq query to sum an specific column, but, when my condition on Where method give me an empty result I do not want to get an exception, ...
1
vote
1answer
9 views

Excluding First and last rows from a sum window function in SQL

I am executing the following query SELECT QLID, Emp_Date, Emp_Time, sum(emp_time) over(partition by qlid order by emp_time) FROM GCC_INTERNAL_OPS.Entry_Time where (qlid='fs255015' or qlid='mf255005') ...
0
votes
2answers
16 views

performing multiple separate sums with separate filters on a table

I have a table with an amount column a reference field and an id column. What I need to do is sum the amount based on different combinations of ID's for each reference. There are nine different ...
0
votes
0answers
57 views

Group By and sum with NSArray

Is there any way to calculate sum after group by? I could only find @sum and @distinctUnionOfObjects with KVC but I don't know how to combine them. I am doing this: I have a report where records are ...
2
votes
2answers
37 views

How to add the result of two sums?

Is it possible to add the result of two Sum() functions? The Table: DROP TABLE MATCH; CREATE TABLE MATCH (M_ID VARCHAR2 (4) NOT NULL, HT_ID VARCHAR2 (4), AT_ID VARCHAR2 (4), P_F ...
1
vote
2answers
43 views

SQL SUM() condtions questions

I have a table that looks like this: +----+------+--------+----------+ | ID | Code | OpType | Quantity | +----+------+--------+----------+ | 0 | A | IN | 7 | | 1 | B | IN | ...
0
votes
0answers
31 views

sum column always update after filtering data table javascript

I'm new to javascript, please help me I want to put a filter and sum functions in a javascript function this my code filter: <script language="javascript"> $(document).ready(function() { ...
0
votes
1answer
42 views

PHP variable with multiple strings to an array

This is extra code in a Drupal view table template so $row = the content I get.. var_dump($row); // output: array(5) { ["field_datum"]=> string(0) "" ["field_werf"]=> string(9) ...
0
votes
3answers
52 views

Rails how to calculate multiple sums from one query data

With the following two models, Company and Response, I am making a query of the total responses per company like this: @allResponses = Company.find(current_user_company_id).responses this gives me ...
1
vote
1answer
44 views

Sum the difference and calculate total

I have three models: Users, which belongs to Concerts, which belongs to Regions. A User listening to a Concert in a Region. Model belongs_to relationships set up respectively with users through => ...
1
vote
1answer
23 views

SQL procedure which should shows total

Hi i have procedure which is work and looks like create procedure sp_CountPickupsduringYearReportA1A2 @MyYear int AS SELECT MAX(a.AgencyName), COUNT(PickupID) as YearTotal, COUNT(PickupID)/(CASE ...
0
votes
1answer
40 views

Sum Up Points Based on Questions Answered

The code is of a short-answer quiz for a uni course. What I'd like to do is to match students' response to answer stored in database. A matching answer (or keywords) counts as a point. I'm having ...
0
votes
0answers
50 views

“AddSelect(SUM) ” Doctrine in createQueryBuilder()

Mi Index Controller public function indexAction() { $em = $this->getDoctrine()->getManager(); $qb = $em->createQueryBuilder(); $yesterday = new \DateTime('yesterday'); ...
2
votes
1answer
55 views

cumulative sum over outer joined table with null values

I have a table with 2 date columns which represent the creation and closing of a JIRA item respectively. For a report I need to get the number of created and closed items per date, and cumulative. ...
0
votes
1answer
67 views

matlab column and row element summation using a for loop

I need to wire an algorithm for class without using any Matlab functions and using for and while loops, that gives me two new vectors one with the sum of elements of each column, and another with the ...
0
votes
2answers
24 views

Summ field value from all records

Hy. How can I setup the query if i would sum all values stored in a field? Now I have that query: "SELECT views FROM visitors WHERE visited_user = '123'" And i have this records stored: id ...
0
votes
1answer
39 views

Mysql Select 5 rows where sum of one combined column best matches a determined value

First, I have not even started coding this query yet simply because I don't know how to approach it. The scenario is this. In table_name I need to query against column_a selecting (all columns in) the ...
0
votes
1answer
42 views

Summation in Mathematica

I am trying to understand a piece of code I found but I am stuck on this summation. This is part of a larger do loop over n. UnderoverscriptBox[\(\[Sum]\), \(m = \(-10\)\), ...
0
votes
2answers
74 views

Mysql GROUP and SUM Optimization

I have 2 tables: CREATE TABLE IF NOT EXISTS `products` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `categoryId` int(10) unsigned DEFAULT NULL, `parentId` int(10) unsigned DEFAULT NULL, ...
1
vote
1answer
74 views

PHP MYSQL SUM total but show rows

What I am trying to do is display earning by the page showing the last entries on top. But it still needs to get the total up to each row. So page one might look like this: Date Amount ...
0
votes
3answers
35 views

Add 6 items together to give a total, but by not adding their values together

Bit of a newbie and probabily a very basic question to you guys, but is driving me mad. I have a mysql table. I have a record which has a record id, and six other fields which contain names of ...
0
votes
2answers
53 views

MYSQL inner join 2 tables and sum()

I am unable to get sum() after joining 2 tables, one is HEADER AND DETAIL. It just gives only 0 result for the below sql statement. Need some help: My tables: INVHDR: Invno, Invdate, ...
1
vote
1answer
41 views

Get Sum of a field in Linq with Group by

I am having an SQL: SELECT ApplicationNo,COUNT(ApplicationNo) AS CNT, SUM(Amount) as AMNT FROM Payments where (TYPE=1 AND Position=1) and (Date>='2011-01-01') and (Date<='2012-01-01') GROUP ...
1
vote
2answers
55 views

MYSQL LEFT JOIN with GROUP BY

:) I have 2 queries, and I need to join them, I need to compare the working time of employee depending on activity with total working time of company in the same activity in defined period First ...
-1
votes
1answer
78 views

How do I add values in column B if column A contains the same employee surname more than once? [closed]

State of Data: I have column A which has names of employes and column B has number of hours. How do I add the hours if column A contains same employee surname more than once? I have been using what I ...
0
votes
2answers
28 views

Sum two array rows in PHP on a single line

I remember once I came across some website where sum of 2 arrays items was performed on a single line using array_sum and array_map functions. Does anyone know how to do that? $a=array(1,2,3,4,5); ...
4
votes
3answers
73 views

How do I limit a select by a sum?

I want to select all the cheapest toys of my stock, amounting a total of 10.0 USD: That is, I want to do something that looks like this: select * from toy where sum(price) < 10.0 order by price; ...
-6
votes
0answers
82 views

c++ summation using for loop [closed]

I'm trying to create a loop that calculates the sum of a two dimensional array in blocks of ten numbers. I also need to calculate the total of every sum for the last three years. For example here is ...
-3
votes
2answers
47 views

How do I calculate matrix sum and compare them

Sorry for being a bore with my homework. I am working on a program in C++ that creates 3 random matrixes and calculates the total sum of each one and prints out the one with the largest sum. So far ...
0
votes
4answers
59 views

How to sum columns with same date in Ruby

I have an array with these type of data inside it, and I need to sum up the columns with same date. [["01-04-2013", 100.0, 110.0, 120, 0, 0, 0], ["02-04-2013", 100.0, 110.0, 130, 0, 0, 0], ...
0
votes
4answers
90 views

Python - Summing a list of dictionaries with a condition

Let say I have a list: l = [{"num1":3, "num2":8, "num3":5, "type":"A"}, {"num1":2, "num2":5, "num3":5, "type":"B"}, {"num1":5, "num2":2, "num3":1, "type":"A"}, {"num1":4, "num2":4, "num3":9, ...
-1
votes
2answers
31 views

SQL Percent of a row that is not null [closed]

I have a row which shows charter trips copilots, not every charter trip has a copliot. Im having difficulty figuring out how to go about this. I imagine I would have to get the count of the values ...
0
votes
1answer
65 views

PHP MYSQL SUM Until a row then stop

Basically I am creating a sort of checking account type query. Which would be fairly easy except I want it split into pages. So I have a field that is called amount and it can be a positive or a ...

1 2 3 4 5 45