Hi Everyone,
I was having problems writing up a query to do the following:
I have a table with columns A B and C
I needed to count all occurrances of unique (A,B) tuples in the table
For Eg:
A B C
foo foo ZOO
foo foo BCV
xoo cdv rdf
foo foo ert
xoo cdv see
red gre
i needed an output
foo foo 3
xoo cdv 1SELECT A,B,COUNT(*)
FROM myTable99
GROUP BY A,B
HAVING COUNT(*) > 1
No comments:
Post a Comment