gpt4 book ai didi

php - 通过多个属性选择产品,使用 AND 代替 OR 连接符,数据模型 EAV

转载 作者:行者123 更新时间:2023-11-29 20:24:49 25 4
gpt4 key购买 nike

我在查询电子商务网站产品过滤器时遇到问题。

我有这样的 EAV 数据模型:

products          [id, title....]
attributes [id, name]
attributes_entity [product_id, attribute_id, value_id]
attributes_values [id, value]

我的查询:

SELECT 
products.id,
products.title
FROM
products
WHERE products.id IN
(
SELECT attributes_entity.product_id FROM attributes_entity INNER JOIN
attributes ON attributes_entity.attribute_id=attributes.id INNER JOIN
attributes_values ON attributes_entity.value_id=attributes_values.id
WHERE
(
(attributes.name="Memory" AND attributes_values.value="16GB")
>> AND
(attributes.name="Color" AND attributes_values.value="Gold")
)
)
AND products.category_id = :category_id

问题是当我在 (attributes.name="Memory"AND attribute_values.value="16GB") 子查询之间使用 >> AND 时,我得到 0 个结果,但是当我使用 OR 时,它给了我更多结果我需要与这两个条件无关的内容。

例如,当我收到请求时:“内存 = 16GB,颜色 = 黑色”。我预计会购买 iPhone 5 16BG 黑色,而不是所有(金色、深空灰色等)16GB iPhone

我正在寻找查询示例,最好带有其工作原理的描述。

问候,安东

最佳答案

你的子查询应该是这样的:

SELECT
attributes_entity.product_id
FROM
attributes_entity INNER JOIN attributes
ON attributes_entity.attribute_id=attributes.id
INNER JOIN attributes_values ON
attributes_entity.value_id=attributes_values.id
WHERE
(attributes.name="Memory" AND attributes_values.value="16GB")
OR
(attributes.name="Color" AND attributes_values.value="Gold")
GROUP BY
attributes_entity.product_id
HAVING
COUNT(DISTINCT attributes.name)=2

此解决方案使用 GROUP BY 子查询。您必须使用 OR,因为属性不能在同一行上同时为“内存”和“颜色”,它们可以同时为 true,但在不同的行上。 COUNT(DISTINCT attributes.name) 计算 Color 或 Memory 的属性数量,如果为 2,则至少有 1 行第一个条件为 true,另外 1 行另一个条件也为 true。

关于php - 通过多个属性选择产品,使用 AND 代替 OR 连接符,数据模型 EAV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39350564/

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