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