vote up 3 vote down star

I am sure there must be a relatively straightforward way to do this, but it is escaping me at the moment. Suppose I have a SQL table like this:

+-----+-----+-----+-----+-----+
|  A  |  B  |  C  |  D  |  E  |
+=====+=====+=====+=====+=====+
|  1  |  2  |  3  | foo | bar | << 1,2
+-----+-----+-----+-----+-----+
|  1  |  3  |  3  | biz | bar | << 1,3
+-----+-----+-----+-----+-----+
|  1  |  2  |  4  |  x  |  y  | << 1,2
+-----+-----+-----+-----+-----+
|  1  |  2  |  5  | foo | bar | << 1,2
+-----+-----+-----+-----+-----+
|  4  |  2  |  3  | foo | bar | << 4,2
+-----+-----+-----+-----+-----+
|  1  |  3  |  3  | foo | bar | << 1,3
+-----+-----+-----+-----+-----+

Now, I want to know how many times each combination of values for columns A and B appear, regardless of the other columns. So, in this example, I want an output something like this:

+-----+-----+-----+
|  A  |  B  |count|
+=====+=====+=====+
|  1  |  2  |  3  |
+-----+-----+-----+
|  1  |  3  |  2  |
+-----+-----+-----+
|  4  |  2  |  1  |
+-----+-----+-----+

What would be the SQL to determine that? I feel like this must not be a very uncommon thing to want to do.

Thanks!

flag

8 Answers

vote up 10 vote down check
SELECT A,B,COUNT(*)
FROM the-table
GROUP BY A,B
link|flag
vote up 5 vote down

TRY:

SELECT
    A, B , COUNT(*)
    FROM YourTable
    GROUP BY A, B
link|flag
vote up 4 vote down

This should do it:

SELECT A, B, COUNT(*) FROM YourTable
GROUP BY A, B
link|flag
vote up 3 vote down

select A,B, count (*) from table group by A,B

link|flag
vote up 3 vote down

SELECT A, B, COUNT(*) FROM MyTable GROUP BY A, B

link|flag
vote up 4 vote down
SELECT A,B,COUNT(1) As COUNT_OF
FROM YourTable
GROUP BY A,B
link|flag
vote up 1 vote down

I agree with Lukasz Lysik, KM, pmarflee, astander, Ken White and Radu094 answers.

link|flag
yes, there definitely seems to be a consensus! – pkaeding Oct 20 at 20:28
4  
I didn't mark you down, but this is better served as a comment on the question. – OMG Ponies Oct 20 at 20:28
know your meme! – Rodrigo Oct 20 at 20:35
vote up 0 vote down

This could be the answer:

select a, b, count(*) 
from <your table name here> 
group by a,b 
order by 3 desc;
link|flag
1  
Also correct, but ordering by ordinals isn't a good habit iirc. – OMG Ponies Oct 20 at 20:29
I thought I'd be the first to answer T_T. – snahor Oct 20 at 20:30
@rexem I suppose you say it because of readability, I can't find other reason. – snahor Oct 20 at 20:33
1  
@snahor: It's because the ordinal is associated with the position in the SELECT. If it moves, your ordering changes. – OMG Ponies Oct 20 at 20:45

Your Answer

Get an OpenID
or

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