Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to rank my users by the number of entries they have submitted to 2 different tables.

table gvr:

rid | jid 
---------------
1     54
2     54
3     54
4     75
5     75

table gos:

sid | jid
---------------
1     54
2     54
3     75
4     75
5     23
6     23

Desired results:

jid | overall_cnt | gvr_cnt | gos_cnt
----------------------------------
54    5            3          2
75    4            2          2
23    2            0          2

I have:

(SELECT jid, count(*) gvr_count
FROM gvr 
WHERE jid IS NOT NULL
GROUP BY jid)
UNION ALL 
(SELECT jid, count(*) gos_count
FROM gos
WHERE jid IS NOT NULL
GROUP BY jid)

But this is grossly incorrect. I have been searching for through other posts similar to my situation but could not find anything of too much value yet. I am thinking of off loading the data manipulation onto PHP, but it would be convenient to do it in one query.

share|improve this question

4 Answers

up vote 1 down vote accepted

I updated Gordon answer this is the best approach.

 select jid ,sum(gvr_count)+ sum(gos_count) as OverallCount ,
  sum(gvr_count) as gvr_count, sum(gos_count) as gos_count
   from ((SELECT jid, count(*) gvr_count, 0 as gos_count
   FROM gvr 
   WHERE jid IS NOT NULL
   GROUP BY jid
  )
  UNION ALL 
  (SELECT jid, 0 as gvr_count, count(*) gos_count
   FROM gos
   WHERE jid IS NOT NULL
   GROUP BY jid
  )
 ) t
group by jid
share|improve this answer
This did the trick! – Ramuk Mar 2 at 23:05

Your query is pretty close. You want the union all and then to do a group by:

select jid, sum(gvr_count) + sum(gos_count) as Overall_Count,
        sum(gvr_count) as gvr_count, sum(gos_count) as gos_count
from ((SELECT jid, count(*) gvr_count, 0 as gos_count
       FROM gvr 
       WHERE jid IS NOT NULL
       GROUP BY jid
      )
      UNION ALL 
      (SELECT jid, 0 as gvr_count, count(*) gos_count
       FROM gos
       WHERE jid IS NOT NULL
       GROUP BY jid
      )
     ) t
group by jid

I think this is the best approach in MySQL to ensure that you get all "jid"s, even those that are only in one table.

share|improve this answer
I missed the condition you mentioned in your note after the query :) – Vaibhav Desai Mar 2 at 21:55
SELECT temp.jid,gvr_cnt + gos_cnt as totals,temp.*
FROM
(
SELECT gos1.jid
,(SELECT COUNT(*) from gvr where gvr.jid = gvr1.jid) AS gvr_cnt
,(SELECT COUNT(*) from gos where gos.jid = gos1.jid) AS gos_cnt
FROM gos gos1 left join gvr gvr1 on gos1.jid = gvr1.jid
group by gos1.jid
  ) as temp
group by temp.jid

SQL Fiddle Demo

share|improve this answer
overall count is not correct – syed mohsin Mar 2 at 21:50
@syedmohsin - see the updated demo please. – MuhammadHani Mar 2 at 21:56
1  
+1 looks good to me – syed mohsin Mar 2 at 21:59
is there anything that would break this query on mysql? Cause it works in sqlfiddle. but I am having trouble getting it to work on my system. – Ramuk Mar 2 at 22:27
@Ramuk - can you post the error? – MuhammadHani Mar 2 at 22:31

This may not be fully correct but I hope you can take it from here:

SELECT innerQuery_1.jid AS jid, 
       (innerQuery_1.gvr_count + innerQuery_2.gos_count) AS overall_cnt, 
       innerQuery_1.gvr_count AS gvr_count,
       innerQuery_2.gos_count AS gos_count
FROM   (SELECT jid, count(*) gvr_count
        FROM   gvr 
        WHERE  jid IS NOT NULL
        GROUP BY jid) AS innerQuery_1,
       (SELECT jid, count(*) gos_count
        FROM   gos
        WHERE jid IS NOT NULL
        GROUP BY jid) AS innerQuery_2
GROUP BY innerQuery_1.jid
share|improve this answer
it is not returning jid 23 – syed mohsin Mar 2 at 21:47

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.