Mysql
 sql >> Database >  >> RDS >> Mysql

Come INNER JOIN 3 tabelle usando CodeIgniter

dovrebbe essere così,

$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();

secondo il framework dei record attivi di CodeIgniters