如何在代码点火器中使用Distinct,我试图获取客户的名称和注册的类别,但我的问题是当获取数据时,由于子类别的原因,我获取的数据是重复的,我使用Distinct,但随后出现不明确的字段错误,如何解决此问题。
我的观点

<table class="table table-hover example1">
<thead>
<tr>
    <th>SNo.</th>
    <th>Business Name</th>
    <th>Category Name</th>
    <th>Edit</th>
</tr>
</thead>
<tbody>
 <?php $i=0;
 foreach($value as $row){ ?>
 <tr>
    <td><?php echo ++$i;?></td>
    <td><?php echo $row->Bussiness_Name;?></td>
    <td><?php echo $row->Category_Name;?></td>
    <td onClick="RestoreVendor(<?php echo $row->Business_Id; ?>,<?php echo $row->Trash;?>,'<?php echo $row->Bussiness_Name;?>')" class="btn btn-primary">Remove</td>
 </tr>
 <?php }?>
 </tbody>
 </table>

我的控制器:
 public function removecategory()
 {
    $this->load->model('VendorModel');
    $data = $this->VendorModel->remove_category();
    $this->load->view('admin/remove_cat', array('value'=>$data));
 }

我的模型
 public function remove_category()
{
    $this->db->select('*');
    $this->db->distinct('Category_Id');
    $this->db->from('business_mapping');
    $this->db->join('business_profile_details', 'business_profile_details.Business_Id = business_mapping.Business_Id');
    $this->db->join('category_master', 'category_master.Category_Id = business_mapping.Category_Id');
    $query = $this->db->get();
    return $query->result();
}

结果图像
mysql - 与Codeigniter MySQL中的Join不同-LMLPHP

最佳答案

您可以使用下面提到的查询。

$query = $this->db->group_by('category_master.Category_Id,business_profile_details.Business_Id');

请试试上面的,它会帮你的。

关于mysql - 与Codeigniter MySQL中的Join不同,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44669975/

10-11 05:14