Where Not Equal To In Codeigniter

[Solved] Where Not Equal To In Codeigniter | Php - Code Explorer | yomemimo.com
Question : where not equal to in codeigniter

Answered by : lokesh-ramchandani-in6l3jq294i2

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");

Source : | Last Update : Fri, 01 Jan 21

Answers related to where not equal to in codeigniter

Code Explorer Popular Question For Php