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.
0
votes
1answer
10 views
Javascript - underscorejs map reduce groupby based on date
I am working with underscorejs in a project. I need to do different types of array operations like map,reduce, filter groupby.
My dataset looks like below:
var data_list = [
{"insertDate": ...
-2
votes
2answers
36 views
How do I order a group by clause in sql
I want to select from my FileList all different files using group by. But I want to get Back only the elements with the highest id. I only get the first entry back.
How to fix this?
select * from ...
0
votes
4answers
22 views
Using WHERE, GROUP BY and ORDER BY
I have a table RacesTimes with columns RaceID and TotalTime, how I can retrieve the lowest TotalTime for every RaceID ?
I tried (few other variations too, but no result)
SELECT *
FROM ...
0
votes
2answers
38 views
Teradata Sql query
I have data as follows in a Table ( 3 columns ):
Name StartDt EndDt
A 01/01/2009 12/31/2009
A 01/01/2010 11/30/2010
B 03/01/2011 10/31/2011
A 04/01/2012 ...
3
votes
4answers
47 views
How to get Sum of Column, Where another column has Count = 1
Sample Data:
+===========================================================================+
|NoBoxes | Carrier | ProcessDateTime | Errored | Voided | TrackingNumber |
...
0
votes
1answer
54 views
GroupBy LINQ statement
I have a list of Questions that is grouped by Subject and Parent.
For example I would have
Subject 1
Parent 1
Question 1
Subject2
Parent2
Question2
Subject1
Parent2
Question3
Subject2
Parent2
...
0
votes
3answers
18 views
MS SQL double group by
I have a table 'Hobbys' with two columns. It looks like this:
NAME | HOBBY
Alice | sport
Bob | painting
... | ...
Yves | programming
Zooey | theatre
Rows could be duplicated. For ...
0
votes
1answer
27 views
Monthly totals month returning NULL, and only outputting running total
I am using the following to try and output my monthly totals in a format such as :
January
Quoted Total : £678
Parts Total : £432
Profit Total : £244
February
Quoted Total : £650
Parts Total ...
2
votes
2answers
39 views
PDO returning a single row while MySQL returns multiple rows
I have the following table in my database:
id | reference | secondID
---------------------------------------------
1 | 11 | 1
2 | 12 ...
2
votes
2answers
34 views
Group by date ranges (teradata)
I have data like this:
Date User ID
2012-10-11 a
2012-10-11 b
2012-10-12 c
2012-10-12 d
2012-10-13 e
2012-10-14 b
2012-10-14 e
...
0
votes
0answers
10 views
MySQL multiple intersection with self performance
For simplicity, let's say we have a table with two columns: uid (user id) and fruit, describing what kinds of fruit a user likes.
E.g.:
uid | fruit
----|------------
1 | Strawberry
1 | Orange
...
0
votes
1answer
19 views
MySQL GROUP BY not working correctly with umlaut characters?
I noticed a problem with GROUP BY in a query I am currently trying to debug. I have a DB table with the following structure (reduced from actual real life):
CREATE TABLE IF NOT EXISTS ...
2
votes
2answers
20 views
How to access (multi)index of a Data Frame?
I have a data frame and use some of its columns to group by:
grouped = df.groupby(['col1', 'col2'])
Now I use mean function to get a new data frame object from the above created groupby object:
...
2
votes
1answer
24 views
How to change the x-axis when plotting groups from a pandas groupby combined in one plot
I am processing a chatlog and my data consists of timestamps, usernames and messages. My goal is to plot the number of messages per month for several users, so that I can compare when users were ...
1
vote
3answers
62 views
TSQL SELECT DISTINCT
I have looked at many examples but i cannot figure this out. Might be too simple for my tired brain. I have a table, I need to select all columns, with one distinct.
ID CAT PRODUCT
...
1
vote
4answers
63 views
How do I merge duplicate rows in my MySQL database, product IDs and their ratings
I have a database which contains product ID's and their rating out of 5 customers have given them. Each row in the database represents 1 review. Its quite simple and has the product ID and a 1 in the ...
0
votes
2answers
42 views
Javascript object group by day,month,year
I am working on application which I need to do grouping of different sets of javascript object and those will be based on month,day and year.
For day I am doing like below
var calculateByDay = ...
0
votes
0answers
11 views
How do I implement GROUP BY in vaadin container using JPAContainer DefaultQueryModifierDelegate?
I'm using Vaadin's JPAContainer to add where clauses, but how do I use group by?
data.getEntityProvider().setQueryModifierDelegate(
new DefaultQueryModifierDelegate() {
...
1
vote
1answer
49 views
Groupby Clause in Pandas
I am trying to find the GroupBy Clause (in PANDAS DATAFRAME) which can do following things.
InPlace Transformation.
Add All the Money
If possible then to get the Original Dataframe with Columns "A" ...
1
vote
4answers
49 views
Write method group_by on my own
I need to write the method group_by by myself. This is what I have so far:
module Enumerable
def group_by(&b)
solution = {}
self.each {|key,val|
b.call(var)
solution = { ...
1
vote
3answers
49 views
multiple row fetched with max number sql
I have two tables with the following records:
Clients:
cid | cname | ccountry
-----------------------
1 | John | Australia
2 | Mark | USA
3 | Liz | England
Orders:
oid | cid | oquantity
...
0
votes
2answers
51 views
MySQL Left Join Many to One Row
To simplify my problem: Let's say I have 3 tables.
Rooms People Things
-------- -------- --------
id| name id | name | fk_rooms ...
1
vote
1answer
28 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 ...
0
votes
0answers
19 views
grouping data in php page
I have created the php report using below code. It works fine. But My problem is to group the data
example
enter code here
# Date Code Name Rate Qty Amount#
15.01.2011 0001 ...
0
votes
1answer
14 views
mootools json filter with groups
I have a json string. It looks like:
var data= [{"name":"Name1","value":"Value1","group":"Group1","order":"1"},
{"name":"Name2","value":"Value2","group":"Group1","order":"2"},
...
0
votes
1answer
50 views
Complex SQL Query with group by Clause
I am not an sql expert but I have got this query
USE msdb
DECLARE
@JobStepCount int,
@JobName sysname,
@JobID uniqueidentifier
DECLARE @JobStatus TABLE (JobStatusID int, JobStatus varchar(20))
...
1
vote
1answer
13 views
Selecting distinct records not considering one field
I have a table with a composite primary key made of seven fields:
PK COD_LTN
PK COD_CANA
PK COD_FAM_PRO
PK COD_CTG_PRO
PK COD_PRO
PK COD_CFG_PRM_PRO
PK COD_FAM_PRM_PRO
I have for example these two ...
2
votes
2answers
43 views
Fetch data from more than one tables using Group By
I am using three tables in a PostgreSql database as:
Customer(Id, Name, City),
Product(Id, Name, Price),
Orders(Customer_Id, Product_Id, Date)
and I want to execute a query to get from them "the ...
0
votes
1answer
51 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
26 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
49 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
18 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
52 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
20 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
30 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
25 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
88 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
36 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
32 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
41 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
45 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
42 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
52 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
49 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
41 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
45 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
47 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
43 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, ...


