combining mysql AND OR queries in Codeigniter

前端 未结 9 1481
慢半拍i
慢半拍i 2020-12-09 07:35

I want to combine AND OR mysql queries in CI. I have already seen this thread: http://codeigniter.com/forums/viewthread/92818/. But they don\'t provide the exact solution th

9条回答
  •  Happy的楠姐
    2020-12-09 08:27

    You can use this simply

    $this->db->where("status","live")->or_where("status","dead");
    

    you can also use

    $this->db->where("(status='live' OR status='dead')");
    

提交回复
热议问题