内连接的行数

时间:2013-03-02 10:27:57

标签: mysql count inner-join

好吧,我已经尝试了2天来解决这个问题。我有2张桌子

  • Organization_dep
    • ID
    • ORGID
    • depname
  • organization_dep_users
    • ID
    • ORGID
    • DEPID
    • 用户ID

我想列出组织各部门的用户ID数量。

1 个答案:

答案 0 :(得分:3)

你可以试试这个:

SELECT 
    b.depname, count(a.id)
FROM organization_dep_users a 
INNER JOIN Organization_dep b ON a.depid = b.id
GROUP BY b.depname;

编辑:

感谢Barmar提供更多详情。