doudouchan5830 2015-03-31 11:36
浏览 96
已采纳

在CodeIgniter中对WHERE子句进行分组

I have a query like this.

WHERE (timetable_id = '1' 
       OR timetable_id = '2' 
       OR timetable_id = '3' 
       OR timetable_id = '4' 
       OR timetable_id = '5' 
       OR timetable_id = '6')

AND exam_name_id = '5'

But I don't know how to execute this in Codeigniter.

I have tried this

while(@$i <= 6 {                         
   $this->db->or_where('timetable_id',$this->input->post('timetable_id'.$i));
   $i++;   
   }                    
$this->db->where('et.exam_name_id',5); 

But the above command gives output like this

WHERE timetable_id = '1'
      OR timetable_id = '2' 
      OR timetable_id = '3' 
      OR timetable_id = '4' 
      OR timetable_id = '5' 
      OR timetable_id = '6'
      AND et.exam_name_id = '5'

This gives all the outputs. How to do that correctly? Please Note in my query I have () braces.

  • 写回答

3条回答 默认 最新

  • douke1954 2015-04-06 09:38
    关注
    @$i = 1;
    $n = $this->input->post('timetable_id'.$i);
    $or_where = "(";
    $or_where.="timetable_id = $n";
    for ($i; $i <= 6; $i++) {
        $n = $this->input->post('timetable_id'.$i);
        $or_where.=" OR timetable_id = $n";
    }
    $or_where.=")";     
    $this->db->or_where($or_where);
    

    This will give your expected answer.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 魔霸ROG7 pro,win11.息屏后会显示黑屏,如图,如何解决?(关键词-重新启动)
  • ¥15 有没有人知道这是哪里出了问题啊?要怎么改呀?
  • ¥200 C++表格文件处理-悬赏
  • ¥15 Windows Server2016本地登录失败
  • ¥15 复合卡卡号轨道写入芯片卡
  • ¥20 基于MATLAB的TDOA
  • ¥15 为啥输入字体突然变了
  • ¥20 已知坐标,换成MATLAB可以用的数据
  • ¥15 这个python五子棋代码的每一句意思是什么啊
  • ¥15 求一段隐藏代码,隐藏一些内容