Welcome Guest, Not a member yet? Register   Sign In
trouble with left join
#1

[eluser]Corbee[/eluser]
Hi,

I'm having sql error saying:

Code:
SELECT * from carmodel LEFT JOIN caryear ON caryear.modelID=carmodel.modelID LEFT JOIN carbrand ON caryear.brandID=carmodel.brandID WHERE brandID = '' AND modelID = ''

This is my code for the model
Code:
$data = array();
$this->db->from('carmodel');
$this->db->join('caryear','caryear.modelID=carmodel.modelID','left');
$this->db->join('carbrand','caryear.brandID=carmodel.brandID','left');
$this->db->where('brandID',$brand);
$this->db->where('modelID',$model);
$q = $this->db->get();    
    if ($q->num_rows() > 0)
    {
        foreach ($q->result_array() as $row)
        {
        $data[] = $row;
        }
    }
$q-> free_result();
return $data;

Does anyone know what's wrong with this? Thanks!
#2

[eluser]Corbee[/eluser]
nevermind, I found the error.




Theme © iAndrew 2016 - Forum software by © MyBB