gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 08:27:26 26 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

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

例如,当我收到请求时:“Memory = 16GB and Color = Black”。我希望获得 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,因为该属性不能在同一行上同时为 Memory 和 Color,它们可以同时为真但在不同的行上。 COUNT(DISTINCT attributes.name) 计算 Color 或 Memory 属性的数量,如果它是 2,则至少有 1 行第一个条件为真,1 行另一个也为真。

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

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