sql >> データベース >  >> RDS >> Mysql

codeigniterの値はNULLではありません

    ドキュメント<が表示された場合/ a> $this->db->where()を使用できます クエリをエスケープしないように、3番目のパラメータをFALSEに設定します。例:

    $this->db->where('field is NOT NULL', NULL, FALSE);
    

    または、このようなカスタムクエリ文字列を使用できます

    $where = "field is  NOT NULL";
    $this->db->where($where);
    

    したがって、クエリビルダーは次のようになります。

    $this->db->select('*');
    $this->db->where('field is NOT NULL', NULL, FALSE);
    $this->db->get('donors');
    

    または

    $this->db->select('*');
    $where = "field is  NOT NULL";
    $this->db->where($where);
    $this->db->get('donors');
    


    1. PHP一括挿入foreach

    2. MySQLタイムゾーン

    3. postgres-where in(list)-列は存在しません

    4. MSSQLServerでの長時間実行クエリのトラブルシューティング