GROUP BY is a command in the SQL relational database standard for collapsing result rows that share a common field value into a single row. Aggregate functions can be performed on other fields in the group, such as SUM() or AVG(), to collate related data into a single value.

learn more… | top users | synonyms (1)

0
votes
1answer
34 views

MySQL count row values WHERE column = value

I have a database that looks pretty much like this: I wanna make a MySQL query where I count the votes for each id and order them by starting from the highest. I want the output to be like: Is ...
0
votes
1answer
15 views

Selecting latest conversations from table containing private messages

I have a table containing personal messages from one user to another. Here is the table structure: mysql> describe pms; +---------+--------------+------+-----+---------+----------------+ | Field ...
1
vote
2answers
18 views

Mysql selecting with sum() and group by from multiple tables

TABLE 1 --------------------------------------- | id | item | MU | quantity | file_id | --------------------------------------- | 1 |item1 | oz | 3.5 | 003 | | 2 |item2 | kg | 1.1 | ...
1
vote
3answers
43 views

SQL: Group By with Case Statement for multiple fields

I am trying to write a GROUP BY clause with a CASE statement so I can conditionally GROUP BY according to the value of the parameter in my query. Here is my query that I am using (significantly ...
0
votes
1answer
15 views

How to group similar records by single value

I have an issue where i wrote a script that finds students that are in more then one school, and im getting duplicate records for each class under that school. The problem is that the students share ...
0
votes
1answer
50 views

pandas: efficient way to make calculations within groups

I am working with transactional data like this: Purchase data | Buyer | Product | Quantity -------------------------------------------------- 2013-01-01 13:00:00 | Carl | A | 5 ...
0
votes
1answer
17 views

How to do build this mongoDB query (mongomapper)

I have certain documents with a name: String and a version: Integer. What I need is a list of the highest version per name. So I think I need to do the equivalent of group by in sql and then a ...
0
votes
2answers
29 views

Unable to ge the counts using GROUP BY mysql

Here is my Table Structure: session_id | session_name | celebrity_id | charity_id | created_date I want to get the total count of celebrity_id that are associated with a charity_id. Now here is a ...
1
vote
1answer
23 views

What's the simplest way to include the COUNT of associations in a SQL query?

Say I have a [Products] table, and a [Products.record] can have many [Sales.records] associated with it. I want to have a single dataset that gives me number of sales a product has. Of course a ...
0
votes
3answers
66 views

Performance update in Aggregate query

I would like to improve the performance of the following in aggregate query. On T_Search_Detail with 30 million records, below Query takes 12 seconds to execute? can it be written better, suggestions ...
0
votes
1answer
8 views

Regroup common rows

I have a query that will give me 4 duplicates everytime because one field is different. Let's say I have this table ----------------- | A | B | C | D | ----------------- | 1 |Blue| 2 | 0 | | 1 ...
0
votes
1answer
30 views

Group by datatable value using linq

I want to use Linq with DataTable to get the following DataTable content periodstart periodend value 2013-01-01 2013-02-01 10 2013-02-02 2013-03-01 10 2013-03-02 2013-04-01 15 2013-04-02 2013-05-01 ...
0
votes
1answer
26 views

Echo all results from sql join when using group by

I have the following query which I run via PHP: select {$tableProducts}.*, {$tableImages}.* from {$tableProducts} left join {$tableImages} on {$tableImages}.product_id = ...
0
votes
1answer
37 views

mysql complex query for monthly report

employee makes entry in the following table when starting new task from home or office [tablename=CHECK] c_id c_sdate c_emp c_task ...
1
vote
4answers
44 views

Group By ALL child records

If I have the following data, where one rule can have multiple criteria: ------------------- RuleId CriteriaId ------------------- 1 1 1 2 1 3 2 1 2 2 2 3 ...
1
vote
1answer
34 views

Most recent value per column with multiple column group by and where clause

Given this 2 million+ entry table,ID auto incrementing, and index1(MainId,SubID,Column1) index2(MainId,SubID,Column2): ID MainID SubID Column1 Column2 -------------------------------------- 1 ...
0
votes
3answers
48 views

Select specific records in a c# list with a max value

I want to select elegantly foreach unique couple (departuretime, arrivaltime, travelclass) , the best records with lower price as bold here in the table. This is below the code which brings me lines ...
0
votes
1answer
37 views

MySQL SELECT COUNT DISTINCT

I am getting from the below query SELECT co.mobility_theme, COUNT(DISTINCT ca.user_id) AS n FROM courses_apply AS ca LEFT JOIN dy41s_courses AS co ON ca.course_id = co.id WHERE ca.submission IS ...
0
votes
1answer
40 views

How to get maximum Id in List and then return list

I have a structure like this: No ID Name Status 1 1 A 1 2 1 B 1 3 1 c 1 4 1 D 1 5 2 E 3 6 2 F 3 7 2 G 3 I want to run a linq when I ...
2
votes
2answers
38 views

Copy one column value to another

I have a table that has the following values sno package id 66 250 111 66 0 100 66 0 99 66 0 88 67 270 225 67 267 111 67 ...
1
vote
2answers
43 views

Pandas: frequency of an element in two groups of columns

I have a DataFrame data laid out like this: Observation A_1 A_2 A_3 B_1 B_2 B_3 Obs1 yes no yes no no no Obs2 no no no yes ...
0
votes
2answers
39 views

Left Join in Query containing Group By

I want to fetch from the following tables the Customers who have ordered at least two Products. The tables are: Customer(Id, Name, City), Product(Id, Name, Price), Orders(Customer_Id, Product_Id, ...
0
votes
3answers
81 views

Database query for count [closed]

I have one table with ID | NAME | DEPT 1 | A | D-1 2 | B | D-1 3 | C | D-2 4 | D | D-3 5 | E | D-1 6 | F | D-3 7 | ...
0
votes
2answers
44 views

LINQ Group By and aggregate fields

I've always struggled with grouping in LINQ, I'd like to group based on the date part of a datetime field and aggregate other fields. Example table layout myDateField myIntField1 myIntField2 ...
0
votes
1answer
37 views

problems with group by function

I'm having a little problem. I'm trying to get a date into my table, but an error occurs when trying running it. I have googlet the error end tried som solutions, but none of them worked. Before ...
0
votes
2answers
19 views

Sorting a dataset with a group by statement

I am writing a query into a database that tracks the results of athletic competitions. My database has an athletes table: | id | first_name | last_name | Gender | | 1 | Sam | ...
0
votes
0answers
18 views

PHP Group function stop working after upgrade

I upgraded to MongoDB 2.4 and PHP Driver 1.3.7. But now, a script I had in PHP stopped working (without any changes to the code). The call to the function is straightforward: $g = ...
0
votes
0answers
11 views

No repeated contact from content://sms/inbox

I'm a newbie in Android development. I'm doing a simple application to read the text messages of the phone. I know how many problems there are around the content provider content://sms but... It's too ...
-1
votes
2answers
26 views

SQL group by doesn't work when date in two columns

I have table with 3 columns: agent_id, log_id, date |log_id |agent_id|date | ---------------------------------------- |0 |1037 |'2013-05-11 10:26:30'| |1 |1041 ...
0
votes
1answer
26 views

SQLite Group By Limit

I have a web service that generates radio station playlists and I'm trying to ensure that playlists never have tracks from the same artist more than n times. So for example (unless it is Mandatory ...
0
votes
2answers
18 views

MySQL - Group BY GROUP_CONCAT

I have the following query: SELECT issue.`sequence` AS issue_sequence, issue.`description` AS issue_description, GROUP_CONCAT(DISTINCT(issue_category.`name`) SEPARATOR ', ') AS ...
0
votes
1answer
15 views

How to get chart value statistics properly

I need to get the sum of sales everyday...grouped by day....and grouped by item. I have tried all sorts of queries, but am not sure if I need to be doing a join or what not. So heres my table Item | ...
0
votes
3answers
43 views

LINQ query with GROUP BY and Count(*) into Anonymous Type

I'm trying to use a LINQ query to determine how many of each particular object type I have and record those values into an anonymous type. Let's say I have some data that looks like this (there are ...
0
votes
2answers
68 views

Select different fields than GROUP BY in SQL Server

I am trying to run a query in SQL Server where the columns I select are different than how it is grouped. This query is used in SAP. The problem, is that if I group by all the same columns that are ...
0
votes
2answers
30 views

Min function in postgresql

I am trying to find a division with the lowest population density to do so i did the following: SELECT P.edname, MIN((P.total_area*1000)/P.total2011) AS "Lowest population density" FROM ...
0
votes
1answer
42 views

Group by - return counts that are zero

I have a query that looks like this: SELECT rank, COUNT(distinct member_id) mcount FROM my_table GROUP BY rank order by field(rank, 1,2,3,4,5,6,7,8,9,10,0); It gives me a list, and sometimes the ...
0
votes
0answers
50 views

C# LINQ to DATASET Grouping with a total

I have a datatable in a data set. The table has 3 columns and it is not grouped. Table1 Field1 string Field2 datetime Field3 decimal I need it grouped on Field1, Field2, with it totaled ...
1
vote
3answers
27 views

Finding records sets with GROUP BY and SUM

I'd like to do a query for every GroupID (which always come in pairs) in which both entries have a value of 1 for HasData. |GroupID | HasData | |--------|---------| | 1 | 1 | | 1 | 1 ...
0
votes
1answer
25 views

Can we use same aggregate function more than once on same table field or column using Different filter conditions?

I want to use SUM() function on 'Amount' field in a query 4 times on a same field with different filters. something like SELECT Date1,CC,BU, SUM(Amount),SUM(Amount),SUM(Amount),SUM(Amount) FROM ...
1
vote
4answers
50 views

Slow SQL query when grouping by two columns with self join

I have a table rating with slightly less than 300k rows and a SQL query: SELECT rt1.product_id as id1, rt2.product_id as id2, sum(1), sum(rt1.rate-rt2.rate) as sum FROM rating as rt1 JOIN rating ...
5
votes
3answers
55 views

Order by the max value in the group

I would like to group my results by one column (NAME), then order by a second column (NOTE) for each group, and finally order the groups by the highest NOTE they have. So, if my entities are ...
0
votes
2answers
32 views

SQL GROUP BY, adding a column from another table works but produces inaccurate information

so here was my original query: SELECT Batting.playerID, SUM(G) as 'G', SUM(AB) as 'AB', SUM(R) as 'R', SUM(H) as 'H', SUM(Doub) as '2B', SUM(Trip) as '3B', SUM(HR) as 'HR', ...
0
votes
1answer
35 views

Group sum of a column and insert

I have a unique situation here. I am sorry of the question is too naive or unclear. I have a table ( called Table1 ) that looks like this: Student First Name | Last name | ID | Test Name | ...
2
votes
1answer
25 views

Counting same column multiple times, already grouped

I'm trying to count all the "Y"s and "N"s in one column but group them by another column. I can get it to pull just the "Y" or the "N" with a WHERE: SELECT TABLE2.GROUP_BY_THIS,COUNT(TABLE1.FLAG) ...
0
votes
1answer
43 views

How do I find out duplicate records in sql and do calculation on column?

I have one table which has data like this: CUSIP Quantity Date Price AF0 500000 5/16/2013 1 AE4 400000 5/6/2013 1.0825 AE4 500 5/6/2013 1 I need ...
2
votes
1answer
27 views

Grouping/Subquery in LINQ to Entities with related ungrouped columns

I have this table in DB: ID | Timestamp | Score ------|---------------------|------------------- 1 | 2013-01-01 12:00:00 | 15 1 | 2013-01-02 11:00:00 | 1 1 | 2013-01-03 ...
0
votes
2answers
26 views

Mysql get latest record on multiple rows by user by datetime or unixtime

I tried to search on stackoverflow, google. I mostly see that we use max. But, on my records, it will be a thousand rows, so it would eat so much time before it get's finished. Basically, I just want ...
0
votes
4answers
39 views

Sum(column) and group by date but get all ID's for that date?

I have the following SQL query: SELECT date(created_at), sum(duration) as total_duration FROM "workouts" WHERE "workouts"."user_id" = 5 AND "workouts"."category" = 'All' GROUP BY date(created_at) ...
2
votes
2answers
41 views

complex SQL query to order by joined table data

Here is the sample data, boiled down as much as possible: Table: items (id / manufacturer) 1 / Microsoft 2 / Microsoft 3 / Microsoft 4 / ACME 5 / Microsoft Table: order_rows (item_id / date) 1 / ...
0
votes
0answers
21 views

Litle trouble with Nhibernate + Groupby

guys.. i have a litle problem here. I need to do this query in database SELECT this_.NOME_CANDIDATO, SUM(this_.QTD_VOTOS) FROM BIGEO.dbo.TB_ELEICAO this_ WHERE this_.CODIGO = '1' ...

1 2 3 4 5 74