具有使用多个 AND OR 运算符Zend_Db的复杂 WHERE 子句
2022-08-31 00:49:23
我想在Zend_Db生成这个复杂的 WHERE 子句:
SELECT *
FROM 'products'
WHERE
status = 'active'
AND
(
attribute = 'one'
OR
attribute = 'two'
OR
[...]
)
;
我试过这个:
$select->from('product');
$select->where('status = ?', $status);
$select->where('attribute = ?', $a1);
$select->orWhere('attribute = ?', $a2);
并产生了:
SELECT `product`.*
FROM `product`
WHERE
(status = 'active')
AND
(attribute = 'one')
OR
(attribute = 'two')
;
我确实找到了一种使这项工作的方法,但我觉得使用PHP首先组合“OR”子句,然后使用Zend_Db where()子句将它们组合在一起,这是一种“作弊”。PHP 代码:
$WHERE = array();
foreach($attributes as $a):
#WHERE[] = "attribute = '" . $a . "'";
endforeach;
$WHERE = implode(' OR ', $WHERE);
$select->from('product');
$select->where('status = ?', $status);
$select->where($WHERE);
这产生了我一直在寻找的东西。但是我很好奇,是否有一种“官方”方式可以使用Zend_Db工具来获得复杂的 WHERE 语句(这真的不太复杂,只是添加一些括号),而不是先在 PHP 中组合它。
干杯!