我正试图用雄辩的方式过滤产品,但是我的过滤器where语句永远无法像现在那样工作。
我的数据库表如下:
products
表
+---------------+
| id | name |
+---------------+
| 1 | product1 |
| 2 | product2 |
| 3 | product3 |
| 4 | product4 |
+---------------+
properties
表
+------------------------------------+
| id | property_group_id | value(int)|
+------------------------------------|
| 1 | 1 | 20 |
| 2 | 1 | 10 |
| 3 | 2 | 2 |
| 4 | 2 | 4 |
+------------------------------------+
products_properties
表
+--------------------------+
| product_id | property_id |
+--------------------------|
| 1 | 1 |
| 1 | 3 |
| 2 | 2 |
| 2 | 4 |
+--------------------------+
我目前使用Eloquent生成的SQL如下所示:
select * from `products`
where exists (
select * from `properties`
inner join `products_properties`
on `properties`.`id` = `products_properties`.`property_id`
where `products`.`id` = `products_properties`.`product_id` and
(
`properties`.`property_group_id` = 1 and <--- property_group_id is not
`properties`.`value` >= 15 and 1 and 2 at the same time
`properties`.`value` <= 25
)
and
(
`properties`.`property_group_id` = 2 and
`properties`.`value` >= 1 and
`properties`.`value` <= 2
)
)
我正在使用此查询寻找product1
,但是这不会发生,因为property_group_id's
在同一行不匹配。在2个where语句之间使用OR也不起作用,因为只有1个必须为true才能找到内容。
在Eloquent中这样生成SQL:
$products = Product::with(['properties' => function($query){
$query->with('propertyGroup');
}])
->whereHas('properties', function ($query) {
// Use filter when filter params are passed
if(array_key_exists('filterGroupIds', $this->filter) && count($this->filter['filterGroupIds']) > 0){
// Loop through filters
foreach($this->filter['filterGroupIds'] as $filter){
// Add where for each filter
$query->where(
[
["properties.property_group_id", "=", $filter['id']], // 1 or 2
["properties.value", ">=", $filter['min']], // 15 or 1
["properties.value", "<=", $filter['max']] // 1 or 2
]
);
}
}
})
->get();
什么是正确的查询才能返回正确的结果?如果可能的话,我的口才代码将如何生成此查询?
答案 0 :(得分:1)
SELECT * FROM properties p
WHERE p.value BETWEEN minval AND maxval
JOIN product_properties pp ON p.id = pp.property_id
JOIN products pr ON pr.id = pp.product_id
请注意,由于我不完全了解所需的数据和行为,因此根本没有优化此查询 此外,如果您希望按组更改,则通过属性ID而不是组ID进行过滤
p.id = pp.property_id
到
p.property_group_id = pp.property_id
对于雄辩的部分,请尝试自己完成并发布代码,但是您需要首先定义模型之间的关系
答案 1 :(得分:1)
每个whereHas()
使用一个$filter
子句:
$products = Product::with('properties.propertyGroup');
if(array_key_exists('filterGroupIds', $this->filter) && count($this->filter['filterGroupIds']) > 0) {
foreach($this->filter['filterGroupIds'] as $filter) {
$products->whereHas('properties', function ($query) {
$query->where([...]);
});
}
}