LeetCode(数据库)- Strong Friendship
Posted 程序员牧码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode(数据库)- Strong Friendship相关的知识,希望对你有一定的参考价值。
题目链接:点击打开链接
题目大意:略。
解题思路:略。
AC 代码
WITH t AS(SELECT * FROM Friendship UNION SELECT user2_id, user1_id FROM Friendship)
SELECT f1.user1_id, f1.user2_id, COUNT(*) common_friend
FROM t f1, t f2, t f3
WHERE f1.user1_id = f2.user1_id AND f1.user2_id = f3.user1_id AND f2.user2_id = f3.user2_id AND f1.user1_id < f1.user2_id
GROUP BY 1, 2
HAVING COUNT(*) >= 3
以上是关于LeetCode(数据库)- Strong Friendship的主要内容,如果未能解决你的问题,请参考以下文章
[LeetCode] Strong Password Checker 密码强度检查器