>我正在尝试通过同一列获取多行。我曾经使用过子句,按所有内容按顺序分组,但它仍然只返回一行。
function slots($condition){
$this->db->select('slot_id');
$this->db->from('mn_date_slot');
$this->db->where('journey_date',$condition);
$this->db->group_by('journey_date');
$this->db->order_by('slot_id','desc');
return $this->db->get()->result_array();
}
我想从journey_date相同的 4 行中获取slot_id。
如果要获取旅程日期相同的所有记录,则需要删除分组依据选项。使用以下函数
function slots($condition){
$this->db->select('slot_id');
$this->db->from('mn_date_slot');
$this->db->where('journey_date',$condition);
$this->db->order_by('slot_id','desc');
return $this->db->get()->result_array();
}