Mysql
 sql >> Base de données >  >> RDS >> Mysql

codeigniter ajoutant IS NULL dans le find_in_set

Ci-dessous le code fonctionne à 100 %. Essayez-le,

    $this->db->select('id,memo,sent_to,sent_by,read_by,date');
    $this->db->from('memos');
    $this->db->where("FIND_IN_SET('1',`sent_to`) !=", 0);
    $this->db->order_by('`id`','DESC');
    $this->db->get();