Hello
I have use 'LIKE' query in Model
$this->db->like('job_title','keywords','both');
$query = $this->db->get('job_description',$data);
which generate Query Output like
SELECT *
FROM (`job_description`)
WHERE `job_title` LIKE '%keywords%'
LIMIT 1
Problem: How could i remove the LIMIT that automatic generate in Query OR can i given Infinite LIMIT in CI Query.
Can you Suggest me..
Thank You.