Zend_Db 的复杂 WHERE 子句使用多个 AND OR 运算符
我想在 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 中。
干杯!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这将是获取指定括号的“官方”方式(请参阅
Zend_Db_Select
文档):因此,鉴于您不知道提前有多少个属性,您所做的事情似乎确实合理。
This would be the 'official' way to get you the parentheses as specified (see Example #20 in the
Zend_Db_Select
documentation):So, what you are doing does seem reasonable, given that you do not know how many attributes you have ahead of time.
如果使用所选答案,您需要记住在构造查询之前引用这些值以防止 SQL 注入。
使用 Zend Db Select 创建查询并引用值的另一个选项是分两个阶段进行:
这样 Zend Db Select 会生成所有 SQL。这是一个老问题,但希望这个想法对有类似问题的人有用。
If using the chosen answer you would need to remember to quote the values before constructing the query to guard against SQL injection.
Another option that uses Zend Db Select to create the query and also quotes the values would be to do it in 2 stages:
This way Zend Db Select does all the SQL generatation. An old question but hopefully this idea might be of use to someone with a similar problem.
我使用这个解决方案,它似乎按需要工作。
I use this solution and it seems work as wanted.
如果您的属性是同一表列,并且您想要检查它是否等于多个值之一,那么您可以使用 IN :
或
否则,我认为除了使用
"attribute = $a1 OR attribute = $ 进行上述决策之外,没有其他选择a2"
If your attribute is the same table column and you want to check it for equal to one of several values, than you can use IN :
or
Otherwise I see no alternative to decision above with
"attribute = $a1 OR attribute = $a2"