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
codeigniter uses its own syntax for OR claus in query
$this->db->or_where('wrk_cl_sts','Success');
to use AND in where clause use $this->db->where(''); twice
$this->db->where('');