我在codeigniter中使用'where'時遇到了一些問題,我想修改不使用和但使用or的子句。codeigniter where in clause顯示結果是或
這是代碼:
$this->db->where_in('id','1,2,3');
它的工作原理是這樣的:
$this->db->where('id',1);
$this->db->where('id',2);
$this->db->where('id',3);
,但我想要的結果是這樣的:
$this->db->where('id',1);
$this->db->or_where('id',2);
$this->db->or_where('id',3);
,但它仍然使用其中不哪裏。謝謝
添加您正在使用的所有代碼。 –
請發佈你想得到的結果。並且你得到了什麼結果。也張貼您有的樣品表。 –