📣
TiDB Cloud Premium is now in public preview. Unlimited growth, instant elasticity, advanced security for enterprise workloads. Try it out →

NOT RLIKE



Returns 1 if the string expr doesn't match the regular expression specified by the pattern pat, 0 otherwise.

Syntax

<expr> NOT RLIKE <pattern>

Examples

SELECT 'datalake' not rlike 'd*'; +-----------------------------+ | ('datalake' not rlike 'd*') | +-----------------------------+ | 0 | +-----------------------------+

Was this page helpful?