我正在使用codeigniter和活動記錄。我正在使用數組選擇我的數據。任何這樣的。但我如何插入標籤'>'和'<'?有可能的?Codeigniter活動記錄其中數組
$whereQuery['service.service_end_date'] = $start;
謝謝你的回覆。
我正在使用codeigniter和活動記錄。我正在使用數組選擇我的數據。任何這樣的。但我如何插入標籤'>'和'<'?有可能的?Codeigniter活動記錄其中數組
$whereQuery['service.service_end_date'] = $start;
謝謝你的回覆。
http://ellislab.com/codeigniter/user-guide/database/active_record.html
$whereQuery['service.service_end_date >'] = $start;
$whereQuery['service.service_end_date <'] = $start;
可以在CI通過> < <>
其中功能
$this->db->where('field_name <', "Condition_value");
從笨頁:
您可以在第一個參數的操作以控制比較:
$this->db->where('name !=', $name);
$this->db->where('id <', $id);
// Produces: WHERE name != 'Joe' AND id < 45
這可能是你想要什麼:
關聯數組方法:
$array = array('name' => $name, 'title' => $title, 'status' => $status);
$this->db->where($array);
//產地:其中name = '喬' 和標題= '老闆' 和狀態='活動'
您也可以使用此方法包含您自己的操作員:
$array = array('name !=' => $name, 'id <' => $id, 'date >' => $date);
$ this-> db-> where($ array);
來源:
http://ellislab.com/codeigniter/user-guide/database/active_record.html
謝謝,但我想要像以前的帖子。 – user3359391
啊,對不起。我沒有抓住那個部分:/ – antimatter
謝謝它幫助我。 – user3359391