在我的数据库中,我有一堆产品。在我的产品表中,我有一个名为的列active
,默认为1
(这意味着它是“活动的”)当我删除产品而不是删除行时,我只是将活动列更改为0
我还有一个搜索功能,可以按名称或描述等搜索产品。我使用 codeigniter 作为框架。这是我生成查询的代码:
$search_query = $this->db->from('company_products')
->where('company_products.active', 1)
->or_like(array('name'=> $keywords, 'model'=> $keywords, 'brand'=> $keywords, 'description'=> $keywords))
->order_by('id', 'RANDOM')
->get();
此代码生成此 mysql 查询:
SELECT `company_products`.*
FROM (`company_products`)
WHERE `company_products`.`active` = 1
AND `name` LIKE '%chair%'
OR `model` LIKE '%chair%'
OR `brand` LIKE '%chair%'
OR `description` LIKE '%chair%'
在“删除”产品(将活动列更改为 0)后,该产品仍会显示在搜索结果中。这就是我怀疑在代码上发生的事情:
(SELECT a product WHERE active = 1 - AND - name LIKE %search_string%)
- OR -
(SELECT a product WHERE model LIKE %search_string%)
- OR -
(SELECT a product WHERE brand LIKE %search_string%)
- OR -
(SELECT a product WHERE description LIKE %search_string%)
但这就是我想要的:
(SELECT a product WHERE active = 1)
- AND -
{ (SELECT a product WHERE model LIKE %search_string%)
- OR -
(SELECT a product WHERE model LIKE %search_string%)
- OR -
(SELECT a product WHERE brand LIKE %search_string%)
- OR -
(SELECT a product WHERE description LIKE %search_string%) }
我希望我的伪代码不会太混乱。我想使用 codeigniter 的活动记录类来完成这项工作。