Codeigniter select query with AND and OR condition

后端 未结 7 989
情话喂你
情话喂你 2020-12-04 01:55

I want a Codeigniter select query from a table with three conditions in .

1. wrk_fld_exc = 140
2. wrk_cs_sts = Open
3. wrk_dlvrd_sts = Delivered OR wrk_cl_st         


        
7条回答
  •  臣服心动
    2020-12-04 02:20

    $this->db->where ('attribute',$data['attribute']);
    $this->db->or_where ('attribute',$data['attribute']);
    $this->db->and_where ('attribute',$data['attribute']);
    

提交回复
热议问题