Zend-framework DB: OR instead of AND operator
问题 have such zend query: $select = $this->_table ->select() ->where('title LIKE ?', '%'.$searchWord.'%') ->where('description LIKE ?', '%'.$searchWord.'%') ->where('verified=1 AND activated=1'); In other words it looks like: SELECT `some_table`.* FROM `some_table` WHERE (title LIKE '%nice house%') AND (description LIKE '%nice house%') AND (verified=1 AND activated=1) If I have couple AND sentences, zend connect it through AND operator. How can I connect it with OR operator ? Cause I need: ...