我试试这段代码
function catstore($id)
{
$this->db->distinct();
$this->db->select('store_id');
$this->db->from('products');
//$this->db->join('products','products.store_id = products.store_id');
$this->db->where('cat_id', $id);
$result = $this->db->get();
return $result->result();
}
它只产生不同的 store_id 但我希望表的所有列都具有基于 store_id 的不同行
建议我任何选择
提前致谢