私はこのコードを試します
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に基づいた個別の行を持つテーブルのすべての列が必要です
オプションを提案してください
前もって感謝します