Welcome Guest, Not a member yet? Register   Sign In
Error on trying to join tables
#1

Hi all,

Need help, I've tried a lot of things but it doesn't work.
An image is better to understand, here my two tables
http://www.hostingpics.net/viewer.php?id...121741.png

So for a simple example, I would like to get all columns from 'client' + column 'name' from 'contact'


My actual function is :
PHP Code:
public function get_client($client_id)
 
     {

 
           $this->db->where('client_id'$client_id);
 
           $query $this->db->get('client');
 
           if($query->num_rows()!==0)
 
           {
 
                 return $query->result();
 
           }
 
           else
            
{
 
                 return FALSE;
 
           }
 
     
This function works and I would like to add the column 'name'

I tear my hair I will not have any more :-)
Reply
#2

PHP Code:
$query $this->db->select('cl.*, ct.name')
->
from('client cl')
->
join('contact ct','cl.client_id = ct.client_id')
->
where('cl.client_id'$client_id)
->
get(); 

https://www.codeigniter.com/userguide3/d...ilder.html
Reply
#3

CodeIgniter Users Guide

See: The Query Builder join method.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#4

That's what I've done but I was writing :
$this->db...
$this->db...

probably something wrong in the code, but now with your code it's working.
thx u

and I read the doc ^^

P.S. : I thing I know why ! I specified get('client')....
Reply




Theme © iAndrew 2016 - Forum software by © MyBB