如何查找有共同好友的人
发布网友
发布时间:2022-03-05 16:50
我来回答
共4个回答
懂视网
时间:2022-03-05 21:12
产品型号:iPhone 11
系统版本:iOS 14.2
软件版本:QQ v8.4.8
目前QQ不能具体查看共同好友是谁。但是可以查看与此好友的共同好友数量
首先打开QQ,点击联系人,点击新朋友
往下拖动到你可能认识他们栏,即可查看QQ共同好友数量
或者在联系人中选择一位好友进入他的QQ空间,点击右上角的亲密度,即可看到与好友共同好友的数量
总结:
目前QQ不能具体查看共同好友是谁。但是可以查看与此好友的共同好友数量
首先打开QQ,点击联系人,点击新朋友
往下拖动到你可能认识他们栏,即可查看QQ共同好友数量
或者在联系人中选择一位好友进入他的QQ空间,点击右上角的亲密度,即可看到与好友共同好友的数量
热心网友
时间:2022-03-05 18:20
关于查找qq有共同好友的人,为您整理了以下步骤,希望可以帮助到您
1、首先登陆qq后,进入qq空间的“个人中心”,点击旁边的“好友”
2、然后点击“寻找好友”
3、左侧就有“你可能认识的人”,右侧是空间为你推荐的排名,上面有“共同好友”和“共同群”
希望可以帮助到您,望采纳
热心网友
时间:2022-03-05 19:54
尝试使用下面的SQL语句:
说明:myid为用户ID, fid为好友id,用户1和2有一个共同好友5,用户1和用户3有两个共同好友5,7。下面的SQL语句查询和用户1有共同好友的用户有哪些,以及同每个用户有几个共同好友。
CREATE TABLE [dbo].[Friend](
[id] [int] NOT NULL,
[myid] [int] NOT NULL,
[fid] [int] NOT NULL,
CONSTRAINT [PK_Friend] PRIMARY KEY CLUSTERED
(
[id] ASC
) ON [PRIMARY]
) ON [PRIMARY]
insert into Friend values(1,1,3);
insert into Friend values(2,1,5);
insert into Friend values(3,1,7);
insert into Friend values(4,2,5);
insert into Friend values(5,2,6);
insert into Friend values(6,2,1);
insert into Friend values(7,3,5);
insert into Friend values(8,3,7);
insert into Friend values(9,3,1);
select friend.myid,count(*) as CommonFriendNumber from friend
where exists(select fid from (select fid from friend where myid=1) T
where T.fid=friend.fid)
group by friend.myid having count(fid)>0
如果不想在结果中包含用户1自己:
select friend.myid,count(*) as CommonFriendNumber from friend
where exists(select fid from (select fid from friend where myid=1) T
where T.fid=friend.fid) and myid<>1
group by friend.myid having count(fid)>0
热心网友
时间:2022-03-05 21:46
还好 效率慢点 我也就你这种笨方法