The 'sum' function which returns the sum of the items in an array.
0
votes
5answers
68 views
How to add variables in Python? [closed]
Python noob here. I'm trying to add a set of input variables defined in an 'if' statement and whenever I try to find the sum it will just display the values inline. For example, when a, b, c, and d ...
1
vote
1answer
56 views
Oracle SQL Sum missing right parenthesis
I have an Oracle SQL that works on MySQL, but I get the "missing right parenthesis" when I run On Oracle.
I put it on sqlfiddle
0
votes
3answers
43 views
How to find the biggest sum of properties for object inside object?
I have a problem and don't know how to solve it. :(
I have a script there objects inside object, such as:
var s = {
1: {
type: "main",
...
values: {
speed: 10,
dexterity: ...
1
vote
1answer
59 views
calculate price between given dates in multiple ranges
Hi the following code works well when used over two or more ranges but not when the start date and end date are in the same range. When the start date and end date are in the same range the totalprice ...
0
votes
1answer
65 views
How to list result in null or empty data from SQL Server having sum?
How to list products that are not (null = 0) ?
STHAR TABLE
id STHAR_GCKOD STHAR_GCMIK
------------------------------------------------
1 NULL NULL
99 ...
0
votes
1answer
69 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
36 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
19 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
39 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
56 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
42 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
57 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
122 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
25 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 ...
0
votes
2answers
77 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
9 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
73 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
82 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
68 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
44 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
132 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
63 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
19 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
68 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
43 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
46 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
46 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
45 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
57 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
47 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
27 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
45 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
74 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
61 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
80 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
27 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
57 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
44 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
89 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
91 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
36 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
57 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
59 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
79 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
140 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
32 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
76 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;
...
-3
votes
2answers
51 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
66 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], ...

