Good morning,
I need to perform a select of two tables that are related 1 to many:
Table 1: Products Table 2: Price group
I need to get all prices in the price group table, which can be 1 or more.
In my case of the select below it even picks up the prices most repeats all the data as if it were another product, how can I make each products come already with all the prices corresponding to it?
I'm using Codeigniter, below the select I'm currently using.
$this->db->select('produtos.*, grupo_preco_produtos.grupo_preco_venda');
$this->db->from('produtos');
$this->db->join('grupo_preco_produtos', 'grupo_preco_produtos.id_produto = produtos.id');
$this->db->where(array('produtos.id_empresa' =>$id_empresa, 'produtos.del' => 0, 'produtos.tipo_produto' => 1,));
$query = $this->db->get();
return $query->result();