gpt4 book ai didi

php - 选择数据并在所选记录中查找重复值的sql查询

转载 作者:行者123 更新时间:2023-11-29 06:23:46 27 4
gpt4 key购买 nike

我正在尝试创建一个将组合以下两个查询的查询。

第一个查询:

select * from mutual_friends where fb_id =8807531 OR fb_id=102061

第二个查询:

SELECT name,picture, COUNT(picture) 
FROM mutual_friends
GROUP BY picture
HAVING ( COUNT(picture) > 1 )

第一个查询选择两个 id 的数据,然后第二个查询在图片列中查找重复项

我想要使用单个查询的结果

如果有人能帮助我解决这个问题,我将非常感激

最佳答案

SELECT name,picture, COUNT(picture) 
FROM mutual_friends
where fb_id = 8807531 OR fb_id = 102061
GROUP BY picture
HAVING ( COUNT(picture) > 1 )

关于php - 选择数据并在所选记录中查找重复值的sql查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32134054/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com