3
votes
3answers
49 views

Aggregate data frame by date and apply different functions to corresponding columns?

I have the following data frame "DF" which is part of a much larger one: X1 X2 X3 X4 X5 4468 2010-03-24 3 1.000000e+00 1 2 7662 2010-03-24 9 3.000000e+00 2 1 1272 ...
2
votes
1answer
37 views

R conditional sum in data frame depending on word in a column

I have a data frame containing words and numeric entries. I want to sum all the entries for which the row entry in the word now is identical. District name Population Child birth rate A ...
1
vote
2answers
76 views

How to get aggregate data weekwise using Entity Framework

I have a backend table named "VideoData" which has data in the following form: VideoID RecordingStarted RecordingEnded ...
1
vote
3answers
71 views

SUM is decreasing the amount of records

I'm trying to select from a union of two queries The union of the two queries gives me let's say 90,000 Records but when I select the sum of them it gives me let's say 89,800 records. So, the sum is ...
1
vote
1answer
143 views

scala slick - complex function in select clause

I have a join table that holds the id of 'a', 'b' and a couple of Option[Long] related to the a<->b relation. I'd like to query it like this: select a_id, sum(longField is not null) from a_b_info ...
1
vote
2answers
106 views

R: sum at different levels [duplicate]

I have a dataset X as: customer_id event_type tot_count 931 1 5 231 2 6 231 1 3 333 3 9 444 1 1 931 3 3 333 1 21 444 2 43 I need a sum at customer_id and event_type level. This is a 1 line code in ...
0
votes
2answers
88 views

SQL: How can I find the total and average value in one SQL statement?

I would like to calculate the total amount of expenditure and the calculate the average value from the number of rows like this: SELECT AVG(SUM(expenditure)) from INCOME; However, there is a error ...
0
votes
0answers
27 views

Group by Aggregated sum of a field with a specified MAX sum per group

I've been racking my brain and searching for answer to this problem for some time now with nothing concrete to show for it. I would think there should be a simple solution to this as I can't be the ...
0
votes
1answer
47 views

How to aggregate dates by months or years Mysql

$SQLString = "SELECT count(score) as counts, DATE(date), SUM(CASE WHEN gender = 1 then 1 ELSE 0 END) Male, SUM(CASE WHEN gender = 2 then 1 ELSE 0 ...
8
votes
1answer
1k views

Aggregate vs Sum Performance in LINQ

Three different implementations of finding the sum of an IEnumerable < int> source are given below along with the time taken when the source has 10,000 integers. source.Aggregate(0, (result, ...
2
votes
1answer
898 views

SQL SUM() function ignoring WHERE clause and CASE statement

SELECT u.FirstName + ' ' + u.LastName as 'User', COUNT(*) as 'Number of Calls', CONVERT(varchar(4), SUM(CASE WHEN c.FromTime BETWEEN @FromDate AND @ToDate ...
0
votes
2answers
588 views

How to use Count and Sum in the Same Query?

I have written the following query using the Aggregate function "SUM". SELECT D.PODetailID, SUM(D.AcceptedQty) FROM STR_MRVDetail D INNER JOIN STR_MRVHeader H ON H.MRVID = D.MRVID ...
0
votes
1answer
195 views

Ordering a query by aggregate sum in Django, but not getting result as expected

I am trying to create a Django site that shows a list of products, and orders them by the total score of votes they have received. 'Product' is one class, and 'Vote' is another, with a field called ...
2
votes
3answers
507 views

SUM() of calculated field

I've this query: select C.One ,C.Two ,C.Three ,C.Four from mytable C where C.One = 11052 and C.Three = 97734 This returns: One |Two | Three | Four 11052 2 97734 4 11052 2 97734 4 ...
0
votes
1answer
233 views

SQL/DB2 - How can I choose which rows to use aggregate functions on, and which to ignore?

I'm sure this is a simple problem for SQL/DB2 gurus, but I'm still a novice and I can't think my way through this. I have a table with four columns: Amount, ID1, ID2, and Date. Here's a sample of the ...
0
votes
1answer
182 views

Aggregate function not working as expected with subquery

Having some fun with MySQL by asking it difficult questions. Essentially i have a table full of transactions, and from that i want to determine out of all the available products (productid), who ...
0
votes
0answers
128 views

OODB Update with Aggregate Function

I'm trying to update a column in my table "InventoryTable" with the SUM of values returned from Querying my other table "OrderTable" I found several other questions like this here, and composed this ...
0
votes
2answers
1k views

Aggregate R sum

I'm writting my first program in R and as a newbie I'm having some troubles, hope you can help me. I've got a data frame like this: > v1<-c(1,1,2,3,3,3,4) > v2<-c(13,5,15,1,2,7,4) > ...
2
votes
2answers
2k views

Data Grouping in R (Akin to Summation with a WHERE clause in SQL)

I am having a challenge grouping data in R using the aggregate command. I can do this with SQL relatively easily, but I am not able the get the same effect with R. As an example, here is a test set ...
19
votes
4answers
548 views

How do I get a SUM to calculate properly with a join?

So I'm trying to count the number of parts, number of tasks, the quantity in each job and the time that it took to manufacture each job but I'm getting some funky results. If I run this: SELECT ...
0
votes
1answer
89 views

Aggregate functions with joins

So I'm trying to count the number of parts, number of tasks, the quantity in each job and the time that it took to manufacture each job but I'm getting some funky results. If I run this: SELECT ...
0
votes
1answer
73 views

Summarising multiple vectors on a single SQL table using GROUP UNION and SUM

I'm trying to create a query that returns counts by relationship type for all entities in a table. eg. 1|VenueName1|0|0|0| where 0,0,0 is the counts for the number of relationships found. The ...
0
votes
1answer
74 views

How can I use the same name for a column in the output of my sqlite query as a value I am comparing to in the join's ON clause?

My original question When I execute the following query in SQLite, I get this error: Query Error: misuse of aggregate: sum() Unable to execute statement When I change the name of the "Loan" ...
2
votes
1answer
1k views

MySQL How to sum rows over a range of timestamps?

Given a table with a timestamp column, e.g.: timestamp | id | value -------------------------------------- 2001-01-01 00:00:00 | 1 | 3 2001-01-01 00:00:00 | 2 | ...
0
votes
1answer
262 views

MySQL - SUM an grouped field

another silly question i would assume.. Wood for the trees syndrome. I need to SUM the contents of a column which is already worked out using GROUP BYs.. How exactly would you go about that? The ...
0
votes
1answer
178 views

Django, Model with “Def Self” value, SUM aggregate not working

I have the following model: class PurchaseOrderLine(models.Model): productcode = models.ForeignKey(OurProduct, on_delete=models.PROTECT) price = models.DecimalField (max_digits=6, ...
2
votes
2answers
264 views

how to sum values of a view in a date range using couchdb?

If I have a map function emitting a timestamp as key ad a number as document, how to get sum of values selecting a date range? EDIT a document example is: { "_id": "[2011, 6, 7, 10, 55]", ...
0
votes
3answers
1k views

How to do an aggregate query in linq

I am new to linq an I need help. I have a transactions table with an amount field and i want split the amount field into Debit and Credit. What is the linq equivalent to the sql query below: Select ...
0
votes
1answer
69 views

SQL copy sum of 2 varchars to to new table

tis my first question so sorry if its not well structured, I have looked for the answer for a while but no joy so here goes.. basically I have 20 columns and want to take the result of adding columns ...
0
votes
1answer
76 views

DISTINCTCOUNT with FILTERing -1 IDs

Please bear with me as I am newbie in SSAS/MDX. I want DISTINCTCOUNT measure on ID column of my fact table but after filtering -1 i.e. unknown IDs. I like to slice/dice on it as well. Here are my ...
1
vote
2answers
691 views

SQL aggregate with multiple rows

I have the following query SELECT tagindex, AVG(val) from floatTable WHERE tagindex IN(828,856,883,910) AND DateAndTime > DATEADD(HH,-1,GETDATE()) AND DateAndTime < ...
0
votes
2answers
303 views

“column XYZ must be in group by” --> “cannot group by aggregate column”

i have trouble with following sql-statement (trimmed): SELECT nr, (CASE WHEN SUM(vkdtab.amount*liter)<>0 AND jjjjmm BETWEEN 201001 and 201009 THEN ...
1
vote
1answer
748 views

LINQ aggregate / SUM grouping problem

I'm having trouble getting my head around converting a traditional SQL aggregate query into a LINQ one. The basic data dump works like so: Dim result = (From i As Models.InvoiceDetail In ...
4
votes
1answer
15k views

LINQ JOIN + GROUP BY + SUM

I have two LINQ statements that I would like to make into one, but for the life of me I can't get it to work. I can't get the grouping to work in the first statement. It complains that the TotalBuy ...
0
votes
1answer
877 views

sql sum or aggregate function on pre-fab column with complex query

I have a query that takes avg data (prices) from 7 days of the week for a long interval. IE avg prices for monday, tues, etc. It works fine, but I'm unsure how I can in the same query sum the avgs ...
0
votes
2answers
124 views

using an aggregate function to narrow my query

I want to do something like this: SELECT locations.id, places.id, scannables.id, SUM(scannables.available) FROM `scannables` INNER JOIN places ON scannables.place_id = places.id INNER JOIN locations ...
1
vote
3answers
3k views

LINQ | How do I get SUM without grouping?

Crazy question...however, I want the sum of all the rows in a table for a column (without using the group by clause) Example: Table = Survey Columns = Answer1, Answer2, Answer3 1 1 ...
2
votes
4answers
876 views

Performing a query on a result from another query?

I have a the query: SELECT availables.bookdate AS Date, DATEDIFF(now(),availables.updated_at) as Age FROM availables INNER JOIN rooms ON availables.room_id=rooms.id WHERE availables.bookdate BETWEEN ...