我需要選擇一個匹配用戶ID和最近創建日期使用codeigniter活動記錄的行。最近的記錄使用日期時間
creation_date
是一個datetime
字段!
public function recent_invoice($user_id)
{
$query = $this->CI->db->select('*');
$query = $this->CI->db->from('invoices');
$query = $this->CI->db->where('user_id', $user_id);
$query = $this->CI->db->where('creation_date',)
$query = $this->CI->db->get();
$result = $query->row();
}
我想獲得匹配用戶ID的行,然後從那些獲取最近的創建日期。我該怎麼做呢?謝謝。
在'creation_date'上使用'order_by' coloumn – tomexsans 2014-09-06 15:10:13
不會返回多個結果嗎? – user3968645 2014-09-06 15:11:04
添加一個限制1,以便它只會返回1個數據集 – tomexsans 2014-09-06 15:11:57