gpt4 book ai didi

sql - 选择所有关系数据中具有特定列值的行

转载 作者:行者123 更新时间:2023-11-29 14:32:19 25 4
gpt4 key购买 nike

如果我有一个 1 对 N 关系,有一个像这样的 products 表:

  products
+----+------+
| id | name |
+----+------+
| 1 | foo |
| 2 | bar |
+----+------+

和一个像这样的选项表:

  options
+----+------------+--------+--------+
| id | product_id | option | active |
+----+------------+--------+--------+
| 10 | 1 | size | true |
| 11 | 1 | color | false |
| 12 | 2 | size | true |
| 13 | 2 | color | true |
+----+------------+--------+--------+

如何通过 active = true 获得具有他所有选项的产品?请注意,如果产品至少有一个选项带有 active = false,那么我不希望查询检索到该产品。

在这种情况下,想要的结果将是产品 2。

最佳答案

您可以使用子查询从选项表中获取所有事件的 product_ids,使用 Postgres 的 bool 聚合 bool_and 仅当所有值都为 true 时才返回 true >

select *
from products
where id in (select product_id
from options
group by product_id
having bool_and(active));

在线示例:http://rextester.com/ILPX66228

关于sql - 选择所有关系数据中具有特定列值的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49850456/

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