614 Second Degree Follower
Posted ffeng0312
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了614 Second Degree Follower相关的知识,希望对你有一定的参考价值。
https://nifannn.github.io/2017/10/27/SQL-Notes-Leetcode-614-Second-Degree-Follower/
select followee f1.follower, count(f1.follower) num from follow f1
join follow f2 on f1.followee = f2.follower
group by f1.followee
order by f1.followee;
以上是关于614 Second Degree Follower的主要内容,如果未能解决你的问题,请参考以下文章