Tagged Questions
1
vote
1answer
16 views
Group By Sum Linq to SQL in C#
Really stuck with Linq to SQL grouping and summing, have searched everywhere but I don't understand enough to apply other solutions to my own.
I have a view in my database called ...
1
vote
3answers
41 views
MYSQL SUM() with GROUP BY and LIMIT
I got this table
CREATE TABLE `votes` (
`item_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`vote` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`item_id`,`user_id`),
...
0
votes
2answers
30 views
MySQL: How to get the max of a sum column?
So I have the following query ..
select rooms.id room_id, rooms.cnt, booked_dates.cnt, sum(booked_dates.cnt)
from rooms
LEFT JOIN booked_dates
on rooms.id = booked_dates.rid and
...
1
vote
2answers
46 views
Get max user scores with min time sums
I have MySql tables that look like this
scores
game_id | level | score | time
--------+-------+-------+-----
1 | 1 | 1 | 10
1 | 2 | 0 | 10
1 | 3 | 1 | 20
2 ...
0
votes
0answers
54 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 ...
1
vote
2answers
42 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
2answers
71 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
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
54 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 ...
2
votes
2answers
106 views
SQL Query SUM DATEDIFF MAX
I have a problem with a SQL-Query. I want to count the runtime of a used application. But in the database the date value is inserted more then one time. I only need the highest value of the pk_date ...
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 ...
0
votes
1answer
67 views
How to Sum a series of rows in MYSQL from one Table, matching the info from another to get the result
SELECT table2.*,
(SELECT Sum(qtde)
FROM table1
WHERE table1.cnes = table2.cnes
AND table1.procedimento = table2.procedimento
AND table1.mes ...
-1
votes
1answer
31 views
MySQL sum and Group By with data identifying info in second table
I have a store type database that I need to run a report where I total all purchases made by one customer.
Due to special needs of this database for a store userIDs are stored in two parts: compID ...
0
votes
1answer
228 views
MySQL SUM DISTINCT with Conditional
I need to gather sums using conditional statements as well as DISTINCT values
with a multiple GROUP BY. The example below is a simplified version of a much much more complex query.
Because the real ...
0
votes
2answers
73 views
MySQL having SUM(column1) <> column2 does not work
I'm working on a query that uses having to compare a sum of elements from a joined table to a value of a field from the "main" table.
Here's the gist of my query:
SELECT t1.id
FROM table1 AS t1
INNER ...
3
votes
2answers
418 views
SQL SUM GROUP BY two tables
I'm having difficulty writing an SQL query that will correctly group account_no together and subtracting an amount.
Firstly I wrote this query which updates everything fine except ACCOUNT_NO A-102 ...
0
votes
1answer
221 views
The difference between each row value - Sum Error
My main query was solved at the following post
TSQL - Get the difference between each row value
I have one problem of summing the reading values between each row.
id device_id time reading ...
0
votes
3answers
51 views
Mysql - group by result by SUM of 2 columns
I have 3 tables:
user(id, name, id_school)
school(id, name)
result(id_user, stage1, stage2)
Now I would like to get school ranking - is sum of 2 columns: stage1 and stage2 of all users.
0
votes
2answers
114 views
MySQL SUM of a COUNT with GROUP BY clause
I wish to SUM the COUNT of a query as follows. This query returns the count properly (1) for each row, but not sure how to add them all up.
SELECT COUNT(*), jss_orders_headers.* FROM ...
0
votes
1answer
116 views
Rails group_by & sum
202I have a model / attributes:
user_id, week_id, project_id, hours
1 61 1 20
1 62 1 5
1 61 2 15
1 63 ...
1
vote
5answers
97 views
Oracle SQL Two Group function why can't be in the same select?
I have two table, defined by this create statement
CREATE TABLE PROJECT (project_name varchar(255), project_budget int, dedicated_project_leader int, dedicated_lead_developer int, ...
1
vote
2answers
29 views
Two different groupping in one SQL statement
I have a table of places:
table place:
id INT,
name VARCHAR(255)
and a table to count visits to each place in each day:
table place_visit:
place_id INT,
date DATE,
count INT
Now I would like to ...
3
votes
2answers
142 views
Sum top 5 values in MySQL
I have a MySQL table where I store results from a racing championship, so that every rows contains -among other data- every driver's position in a certain race. I want to get the sum of a certain ...
0
votes
2answers
55 views
GroupBy + Case When Sum(x) > 0 then Sum(x) else 0
How can I replicate following in LINQ
SELECT KEY_COLUMN,
CASE WHEN SUM(COLUMN2) < 0 THEN SUM(COLUMN2) ELSE 0 END AS NewColumn
FROM TABLE
GROUP BY KEY_COLUMN
till now I could come up ...
1
vote
1answer
81 views
MySQL Query sum
I've got the following query
SELECT crm_presupuestos.fecha_alta,
crm_presupuestos.id_vendedor,
Sum(
`precio` * ( 100 - `crm_presupuestosdetalles`.`bonif` ) / 100 * ...
0
votes
1answer
173 views
calculating gpa sql
to calculate SGPA of a students in table the formula is sum of 3*gradepoint of every course registered by a specific student in specific semester and dividing this sum by no.of courses.
i am having a ...
1
vote
1answer
180 views
How to group by and sum operations Datatable
this is my datatable
Id Article Lot Ordered Unit Shipment Difference
1 32207 21309 80 Case 80 0
2 32218 21309 70 Case 60 ...
1
vote
3answers
96 views
Get max user scores from hourly sums
I have a MySql table with sample data like this:
+---------+---------+--------+---------------------+
| id | user_id | scores | created_at |
...
0
votes
3answers
391 views
SQL select values sum same ID
Hi Guys this is my Table called "SAM"
ID | S_Date | S_MK | TID | Value |
===============================================
1 | 2012-12-11 | 1 | 112 | 23 |
2 | ...
1
vote
4answers
181 views
Mysql query, select, group & sum by minutes
I have a database table like so:
id | donation_type | donation_amount | time_inserted
1 em1 20 2012-12-07 10:01:00
2 em1 50 2012-12-07 ...
0
votes
0answers
173 views
mysql SUM DISTINCT rows on left join
i have an issue with this query on SUM with left join where and group by
i have 2 tables sales which stores the unixtimestamp in the saleon field with other stuff like roundoff, hash (binary field)
...
0
votes
1answer
340 views
VB.NET LINQ Join 2 tables , then group by a column then sum
Datatable1
Name Quantity
A 2
B 5
C 3
D 4
Datatable2
Name Quantity
A 1
B 3
F 4
G 4
Expected Result After Joining Both ...
-1
votes
2answers
383 views
Results from LINQ with SUM for TimeSpan, GROUP and JOIN [closed]
I've following EF model:
I want to get data in following view:
In Data entity Time is Timespan with milliseconds. In result, PlaceInStep is place between members by StepId.
How to make this ...
0
votes
0answers
21 views
result SUM from to 2 tables
table 1
date.......item_name.....qty_itemOut
2012-11-20.............a...................6
2012-11-20.............b...................7
2012-11-19.............a...................5
...
0
votes
2answers
187 views
SQL SUM, Group by and Having query
I have a pretty standard query that will get me a list of products that have stock above 0.
This works fine, however I now need to ADD the SUM of all negative numbers for BranchID 31 for the given ...
0
votes
0answers
167 views
Linq - Group and Sum
As before, I am a newbie to LinQ and trying to learn the trade through this forum. I am very grateful for the help i've received to date.
I have a new LinQ query.
I am looking to Group and Sum Data ...
1
vote
1answer
249 views
Linq Join tables, Group by date, Sum of values?
I have two tables (one-to-many). MeterReadings(0..1) and MeterReadingDetails(*)
I want to join this tables and gorup by date. Date field is in MeterReadings and Others are in MeterReadingDetails.
...
0
votes
1answer
714 views
LINQ Group by and Sum syntax
i have the following vb.net LINQ Query
Dim q = From row In dx.AsEnumerable
Group row By G = New With {.Cat = row.Field(Of Integer)("catalogid")}.Cat,
...
0
votes
2answers
102 views
get SUM of another row of GROUP BY'd rows
I have this table:
This selection is is duplicated many times for different var_lines (which pretty much work as one row of data, or respondent for a survey) and set_codes (different survey codes).
...
5
votes
1answer
1k views
Find duplicate and merge record into single datatable c#
I am able to find the duplicates out of DataTable rows. Like following:
var groups = table.AsEnumerable()
.GroupBy(r => new
{
c1 = r.Field<String>("Version"),
...
0
votes
3answers
113 views
MySQL group by where day <= x
I need some help figuring out the correct SQL statement.
If've got a table with the following structure:
id, product_id, units, timestamp
I wan't a list which contains the all over units per day. A ...
0
votes
0answers
39 views
Cannot generate a keyset cursor for the query because there is an explicit or implicit GROUP BY operator
I am using the following query
SELECT SUM(Total) AS total FROM TableName WHERE (ID = 8)
and i get the following error Cannot generate a keyset cursor for the query because there is an explicit or ...
1
vote
1answer
329 views
SQL(Interbase) : Case of string with Aggregate function
I am not able to make the following SQL work in Interbase:
i get the following error:
Error at line 1 Attempt to execute an unprepared dynamic SQL statement
SQL:
SELECT CASE
WHEN kl='K' ...
0
votes
1answer
122 views
mysql query performance SUM, group by date
I have this query below in a mysql database. The query is taking ~6 seconds to run on ~1-2 million rows. I have indexs on date, uniqueuserid, collectiontype.
How can I increase the performance of ...
1
vote
0answers
437 views
How to group and sum datatable
I have datatable with two columns; line and duration.
I want the sum of the duration, based on the line group. For example:
LINE DURATION
A1 00:05:20
A1 00:07:00
A1 00:02:10
A1 ...
0
votes
1answer
49 views
I have two rows with different id's.I want to add both the rows and display it as One
I have a derived Table from two different tables using count and group by functions for which the output is like this.
Department DeptID Count(noofemployees)
HR 1 60
...
1
vote
2answers
361 views
MySQL Subquery using SUM, WHERE, GROUP_BY
I'm a beginner (not a DBA).
The simple version of my data ==> My hoped for result:
|ball |color|count| |ball |Total Blue|Total Red|
------------------- ----------------------------
...
9
votes
2answers
184 views
MySQL joining tables group by sum issue
I have problem with joining tables, here are example tables:
Table A: ( 30 rows)
╔════╦════════════╦═════════════╗
║ ID ║ Name ║ Description ║
╠════╬════════════╬═════════════╣
║ 1 ║ Type ...
1
vote
1answer
582 views
Doing a LINQ join, then group by, then a sum on two different columns
I am using LINQ to SQL in a project and I am having an issue doing both a join and a group by to do a comparison between the two fields that are in each table.
Here is what my query looks like:
var ...
0
votes
3answers
294 views
mysql combine data from different tables using a single group by column
Here i have 6 tables below. i would like to get invoicetotal and debittotal group by tax% column
invoices
--------
inv_id col2 col3
1 xxx xxx
invoice_ps
-----------
inv_fkid ...



