我的查询中有三个条件,我希望它们只在数组中与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
请不要建议任何解决方案,例如单独添加此条件。
谢谢!
答案 0 :(得分:1)
试试这个
$this->db->where(array('id'=>5,'name'=>$name))
$this->db->where('create_date >=', "DATE_SUB(NOW(), INTERVAL 1 MONTH)")