Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

inner join codeigniter

$this->db->select('*');    
$this->db->from('table1');
$this->db->join('table2', 'table1.id = table2.id');
$this->db->join('table3', 'table1.id = table3.id');
$query = $this->db->get();
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #join #codeigniter
ADD COMMENT
Topic
Name
1+1 =