Followee Follower
A        B
B        C
B        D
B        E
A        F
F        G
F        H
B        H

在这种情况下,如何查询“A”的二级追随者的数量,即5?

最佳答案

我觉得很简单

select count(distinct t1.Follower)
    from t
       join
         t t1
       on t.Follower=t1.Followee
  where t.Followee='A'

关于mysql - 如何在数据库中查找二度关注者的数量如下?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34431957/

10-13 06:23