CI_DB_query_builder::not_like PHP Method

not_like() public method

Generates a NOT LIKE portion of the query. Separates multiple calls with 'AND'.
public not_like ( mixed $field, string $match = '', string $side = 'both', boolean $escape = NULL ) : CI_DB_query_builder
$field mixed
$match string
$side string
$escape boolean
return CI_DB_query_builder
    public function not_like($field, $match = '', $side = 'both', $escape = NULL)
    {
        return $this->_like($field, $match, 'AND ', $side, 'NOT', $escape);
    }