Ваш запрос:
select * from dbo.RequisitionTable
where RequestorID = '$ID'
and RequestorDepartmentID in ($req_dep)
and IsProcessedToHire=0
and IsHold = 0
and IsRejected = 0
Может быть легко преобразован в конструктор запросов CodeIgniter следующим образом:
$this->db->select('*');
$this->db->from('dbo.RequisitionTable');
$this->db->where('RequestorID', $ID);
$this->db->where_in('RequestorDepartmentID', $req_dep);
$this->db->where('IsProcessedToHire', 0);
$this->db->where('IsHold', 0);
$this->db->where('IsRejected', 0);
Выше предполагается, что $ ID и $ req_dep передаются в модель и что последний является массивом