not_like
Definition
/**
* Create a NOT LIKE condition.
*
* Example: not_like(col('name'), literal('pg_%'))
* Produces: name NOT LIKE 'pg_%'
*/
not_like(Expression|string $expr, Expression|string $pattern, bool $caseInsensitive) : Like /**
* Create a NOT LIKE condition.
*
* Example: not_like(col('name'), literal('pg_%'))
* Produces: name NOT LIKE 'pg_%'
*/
not_like(Expression|string $expr, Expression|string $pattern, bool $caseInsensitive) : Like