db->select('*'); $this->db->from('faculty'); $this->db->where(array('status'=>1)); $query = $this->db->get(); //echo $this->db->last_query();exit; return $query; } function get_fac($id) { $this->db->select('f.*,e.id as employeeId'); $this->db->from('faculty as f'); $this->db->join('employee as e','e.typeId=f.id','INNER'); $this->db->where(array('f.status'=>1,'f.id'=>$id,'e.roleId'=>3)); $query = $this->db->get(); //echo $this->db->last_query();exit; return $query; } function viewFaculty($id) { $this->db->select('*'); $this->db->from('faculty'); $this->db->where(array('status'=>1,'id'=>$id)); $query = $this->db->get(); //echo $this->db->last_query();exit; return $query; } }