with rt as
(select uid, friends from usr_friends_relation
union
select friends,uid from usr_friends_relation)
,
u as
(select a.uid,a.friends friends1,b.friends friends2
from rt a
left join rt b on a.friends=b.uid
where a.uid!=b.friends
)
select uid,count(*)
from u
where (uid,friends2) not in (select uid,friends1 from u)
group by uid
可能这题也有更简单的方法,但我目前没想到,以上代码已通过自测。
第一步建立朋友表rt,通过union汇总去重的方法得到rt,可以这样理解相当于是把所有用户放在第一列,用户的朋友放在第二列。
第二步再建立一个临时表u,这张表包含用户,用户的朋友,用户的朋友的朋友。这张表是在rt表的基础上自连接得到的,目的就是得到用户的朋友的朋友这个字段,其中where a.uid!=b.friends 这个条件的代表的是用户朋友的朋友不能是自己。
第三步 就是统计二度朋友的数量了,由题目a和c不是朋友也就是用户的朋友不能成为用户朋友的朋友,这也就是where条件。
不知道我这样表达清楚了吗?😂