1
function retrieve_income_types(){
    $this->db->where('active','1');
            $this->db->group_by('Income_Type_Name');        
            $this->db->order_by('Income_Type_ID', 'desc');
    return $this->db->get('Income_Types')->result();
}

これは私のモデルで、グループ化された名前の最小の ID を返します

4

0 に答える 0