codeigniter活动记录查询与where

时间:2015-03-09 10:44:31

标签: php mysql codeigniter activerecord

我的查询中有三个条件,我希望它们只在数组中与codeigniter活动记录合并。

$this->db->where(array('id'=>5,'name'=>$name));  // I want to insert create_date >= DATE_SUB(NOW(), INTERVAL 1 MONTH) here in this where array

请不要建议任何解决方案,例如单独添加此条件。

谢谢!

1 个答案:

答案 0 :(得分:1)

试试这个

$this->db->where(array('id'=>5,'name'=>$name))
$this->db->where('create_date >=', "DATE_SUB(NOW(), INTERVAL 1 MONTH)")