Answers for "where not equal to in codeigniter query"

0

where not equal to in codeigniter

It worked fine with me,
	$this->db->where("your_id !=",$your_id);
Or try this one,
	$this->db->where("your_id <>",$your_id);
Or try this one,
	$this->db->where("your_id IS NOT NULL");
Posted by: Guest on December-25-2020

Code answers related to "where not equal to in codeigniter query"

Browse Popular Code Answers by Language