Codeigniter (CI) Table Join

 

 

$this->db->select('users.usrID, users_profiles.usrpID')
         ->from('users')
         ->join('users_profiles', 'users.usrID = users_profiles.usrpID');
$result = $this->db->get();

Comments

Popular posts from this blog

Target class controller does not exist - Laravel 8