Welcome Guest, Not a member yet? Register   Sign In
CI3, active record contain $offset,$limit
#2

(This post was last modified: 06-29-2020, 11:32 AM by neuron.)

`$this->db->select('*')
->from('employee e')
->group_start() //this is not necessary, just added in case you will need in future. it will wrap query like statements in parentheses. there is also or_group_start()
->or_like('e.columnA', $keyword)
->or_like('e.columnB', $keyword)
->group_end()
->limit($limit, $offset);`

//added alias "e", but is not necessary

//to get results
`return $this->db->result_array(); `

//to see the generated SQL code:
`$sql = $this->db->get_compiled_select();`

It is simple query, you can figure about easily if you look in CI v3.x documentation
https://codeigniter.com/userguide3/datab...ilder.html
Reply


Messages In This Thread
RE: CI3, active record contain $offset,$limit - by neuron - 06-29-2020, 11:28 AM



Theme © iAndrew 2016 - Forum software by © MyBB