如何在phpactiverecords中添加不相等的条件?
Code_reference::find('all', array('code' => $name), array('conditions' => 'id != '.$code_id))
答案 0 :(得分:0)
尝试使用<>
Code_reference::find('all', array('code' => $name), array('conditions' => 'id <> '.$code_id))
答案 1 :(得分:0)
在您的示例中,第二个$options
数组将被忽略。您必须自己合并它们,因此不能再使用紧凑的哈希 - 模式。
CodeReference::all(array('code = ? AND id != ?', $name, $code_id));
要打印SQL查询,可以使用last_sql
。
CodeReference::table()->last_sql
有关详细信息,请参阅官方(但仍然滞后)文档:
http://www.phpactiverecord.org/projects/main/wiki/Finders#conditions