Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I understand the point of group by x

But how does group by x, y work and what does it mean?

share|improve this question
is that in sql syntax? – hallie Mar 10 '10 at 23:20
You won't find it described as this question poses it. The GROUP BY clause can take one or more fields. GROUP BY customer; GROUP BY lastname, firstname; GROUP BY year, store, sku etc. – Bill Mar 10 '10 at 23:32

1 Answer

up vote 81 down vote accepted

"Group By X" means "put all those with the same value for X in the one group.

"Group By X, Y" means "put all those with the same values for both X and Y in the one group."

To illustrate using an example, let's say we have the following table, to do with who is attending what subject at a university:

Table: Subject_Selection

Subject   Semester   Attendee
---------------------------------
ITB001    1          John
ITB001    1          Bob
ITB001    1          Mickey
ITB001    2          Jenny
ITB001    2          James
MKB114    1          John
MKB114    1          Erica

When you use a group by on the subject column only; say:

SELECT Subject, Count(*)
FROM [Subject_Selection]
GROUP BY Subject

You will get something like:

Subject    Count
------------------------------
ITB001     5
MKB114     2

...because there are 5 entries for ITB001, and 2 for MKB114

If we were to group by two columns:

SELECT Subject, Semester, Count(*)
FROM [Subject_Selection]
GROUP BY Subject, Semester

we would get this:

Subject    Semester   Count
------------------------------
ITB001     1          3
ITB001     2          2
MKB114     1          2

This is because, when we group by two columns, it is saying "Group them so that all of those with the same Subject and Semester are in the same group, and then calculate all the aggregate functions (Count, Sum, Average, etc.) for each of those groups". In this example, this is demonstrated by the fact that, when we count them, there are three people doing ITB001 in semester 1, and two doing it in semester 2. Both of the people doing MKB114 are in semester 1, so there is no row for semester 2 (no data fits into the group "MKB114, Semester 2")

Hopefully that makes sense.

share|improve this answer
6  
Good answer! +1. I like those ones that provide practical examples as well as the explanation. – paxdiablo Mar 10 '10 at 23:34
1  
@paxdiablo - Cheers! – Smashery Mar 11 '10 at 0:01
1  
smashery you're the man thank u so much for clarifying – Артём Царионов Mar 11 '10 at 15:43
Even though this is an hold answer, any chance you could expand your answer with how multiple group by's affect aggregate functions like, if you e.g. also want a column that displays the count of subjects per semester? This answer just comes up as one of the first on google, so I thought this might be a good addition. :) – Johny Skovdal Nov 16 '11 at 9:24
I added a bit of a clarification down the bottom to clarify that aggregates are calculated per unique group - is that sort of what you were meaning? – Smashery Nov 16 '11 at 20:38
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.