📜  在 codeigniter 中不等于 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:35.936000             🧑  作者: Mango

代码示例1
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");