gpt4 book ai didi

Zend 框架 DB : OR instead of AND operator

转载 作者:行者123 更新时间:2023-12-04 01:29:57 28 4
gpt4 key购买 nike

有这样的 Zend 查询:

$select = $this->_table
->select()
->where('title LIKE ?', '%'.$searchWord.'%')
->where('description LIKE ?', '%'.$searchWord.'%')
->where('verified=1 AND activated=1');

换句话说,它看起来像:
SELECT `some_table`.* FROM `some_table` WHERE (title LIKE '%nice house%') AND (description LIKE '%nice house%') AND (verified=1 AND activated=1)

如果我有几个 AND 句子,zend 通过 AND 运算符连接它。如何将其与 OR 运算符连接?因为我需要:
...(title LIKE '%nice house%') OR (description LIKE '%nice house%')...

您的帮助将不胜感激。

最佳答案

$this->_table->select()->orWhere($condition);

要构建更复杂的查询(例如子条件),您可能必须使用 $this->table->getAdapter()->quoteInto()并手动编写您的 SELECT 。

关于Zend 框架 DB : OR instead of AND operator,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3536807/

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