我需要使用codeigniter在同一字段上运行条件为where
和or_where
的查询。有其他操作执行的操作。代码,
function get_newTapal($off, $status)
{
$p = $this->db->select('*')
->from('tbl_tapal')
->join('tbl_subjectmain', 'tbl_subjectmain.Msub_Cd = tbl_tapal.Tmain_sub')
->join('tbl_subject_all', 'tbl_subject_all.Sub_Cd = tbl_tapal.Tsub_sub')
->join('tbl_seat', 'tbl_seat.SeatCd = tbl_tapal.Tseat')
->where('tbl_tapal.Tstatus', $status)
->where('tbl_tapal.Toffice_id', $off)
->where('tbl_tapal.Tmain_sub !=', 1)
->where('tbl_tapal.Tsub_sub !=', 2)
->or_where('tbl_tapal.Tstatus', 2)
;
$query = $p->get();
$new_tapal=$query->result();
foreach($new_tapal as $row){ echo $row->Toffice_id.'/'.$row->Tapal_no.'/'.$row->Tyear.'<br>'; }
}
当我在没有or_where
条件的情况下运行查询时,它会根据代码正确地运行。我需要满足所有where
条件的行,其中状态值为&#39; 1&#39;或&#39; 2&#39;。但是当我添加or_where
条件时,它不会检查查询部分的其他条件。即,查询返回满足前4个where
条件的行以及仅满足or_where
条件的行。
有人可以帮我解决这个问题吗?
答案 0 :(得分:3)
您可以使用$this->db->or_where_in()
检查其中的多重或条件。
例如:
$status= array('1', '2', '3');
$this->db->or_where_in('tbl_tapal.Tstatus', $status);