What I have is a table that has different fields and among them the fields that are called category1, category2. Let's say there is some data stored there

(cat1, cat2), (cat2, cat1), (cat3, cat1), (cat3, cat4), (cat1, cat2), (cat2, cat3)

A row can't have duplicate categories, i.e. (cat1, cat1) is not possible. Is there an easy way to get an output like this

(cat1, 4), (cat2, 4), (cat3, 3), (cat4, 1)

What I currently do is

(SELECT category1 AS category UNION ALL SELECT category2 AS category) AS tmp

and then I deal with this tmp table and group by it. The problem is that I can't find a way to optimize it. So the question is: can you think of any better way to do the select above which would allow me to use indexes? If not, is the only way to do this - to actually create this tmp table and index it?

link|improve this question

76% accept rate
enclose your schema, please – ajreal Dec 5 '11 at 16:31
feedback

2 Answers

up vote 2 down vote accepted
SELECT fieldname, SUM(cnt)
FROM (
    SELECT category1 AS fieldname, COUNT(category1) AS cnt
    FROM yourtable
    GROUP BY category1

    UNION ALL

    SELECT category2 AS fieldname, COUNT(category2) AS cnt
    FROM yorutable
    GROUP By category2
) AS child
GROUP BY fieldname
link|improve this answer
1  
I think you need UNION ALL otherwise if a Category had the same count in both columns the counts will be off – Conrad Frix Dec 5 '11 at 16:36
Ah yeah, I always forget that. Thanks. – Marc B Dec 5 '11 at 16:37
Thanks, that's a cool query! – Eugene Dec 5 '11 at 16:51
feedback
select distinct category1, category2 
from   myTable
group by category1, catgeory2
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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