3

我最近开始将我的 codeigniter 应用程序中的后端查询转换为活动记录模式。截至目前,我正在使用 codeigniter 2.1 版本。我最初在 mysql 中编写了一个查询作为

SELECT * FROM table WHERE (field1 = $field1 OR field2 = $field2) AND field3 = $field3 AND field4 = 'text'

现在我想用下面给出的方式写这个东西:

$this->db->select('*');
$this->db->from('table');
$this->db->where('field1',$field1);
$this->db->or_where('field2',$field1);
$this->db->where('field3',$field2);
$this->db->where('field4','text');

但不知何故,“or_where”功能无法正常工作。对此有任何解决方案,我会很高兴吗?

4

1 回答 1

2

你写自定义字符串Active Record

$where = "(field1 = " . $field1 . " OR field2 = " . $field2 . ") AND 
          field3 = ". $field3 . " AND field4 = 'text'";
$this->db->where($where);

单击此处获取来源:Active Record并浏览自定义字符串

于 2012-10-20T07:24:03.080 回答