gpt4 book ai didi

mysql - 在 Mysql 中,如何获取同一个外键的所有值都显示在另一个列的列表中的记录

转载 作者:行者123 更新时间:2023-11-30 21:54:51 25 4
gpt4 key购买 nike

在 MySql 数据库中我有一个 deviceBindingInfo 表包含 userId 和 deviceType,如何选择已绑定(bind)所有 deviceTypes 的所有 userId{A, B, C}

以下解决方案是否正确?或者有更好的解决方案吗?

SELECT userId 
FROM (SELECT userId, deviceType
FROM deviceBindingInfo
WHERE deviceType IN (A, B, C)
GROUP BY userId, deviceType) AS TempTable
GROUP BY userId
HAVING COUNT(userId) >= 3;

最佳答案

你不应该在内部选择中使用没有聚合功能的组来删除重复项,你可以使用 DISTINCT为了获得正确的计数,您应该使用 count(deviceType)(在这种情况下,结果是相同的 .. 但只有匹配 A、B、C 的设备类型)

SELECT userId 
FROM (
SELECT
distinct userId
, deviceType
FROM deviceBindingInfo
WHERE deviceType IN (A, B, C)
) AS TempTable
GROUP BY userId HAVING COUNT(deviceType) >= 3;

或者您可以使用 count(distinct deviceType) 来完成子查询

      SELECT 
userId
FROM deviceBindingInfo
WHERE deviceType IN (A, B, C)
group by userId
HAVING COUNT(deviceType) >= 3;

关于mysql - 在 Mysql 中,如何获取同一个外键的所有值都显示在另一个列的列表中的记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45631196/

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