我是codeigniter的新手,我希望通过传递许多条件来选择用户的详细信息。我通过了一些条件:
$this->db->where ( 'userprofile.Disability', $Disability);
$this->db->where('userprofile.LivingCity', $LivingCity);
同样,我想在条件:
的情况下传递这个where DateCreated > DATE_SUB( NOW( ) , INTERVAL 10 DAY );//how to write in code igniter format?
如何用代码点火器格式写出^?
例如:
`$this->db->where('userprofile.DateCreated>', DATE_SUB( NOW( ) , INTERVAL 10 DAY);`// how to write this?
如何写^?
我想通过这个条件来选择在10天之前插入值的人,我的选择表是:
$this->db->select('*');
$this->db->from('Userprofile');
答案 0 :(得分:4)
你应该在codeignitor中写出自定义条件。
$ where =" DateCreated> DATE_SUB(NOW(),INTERVAL 10 DAY)&#34 ;;
$这 - > DB-化合物其中($其中);
结帐CI的活动记录类:https://www.codeigniter.com/userguide2/database/active_record.html