NOT RLIKE (Lakehouse v1)
Returns 1 if the string expr doesn’t match the regular expression specified by the pattern pat, 0 otherwise.
Analyze Syntax
Section titled “Analyze Syntax”not_(<column>.regexp_match(<pattern>))Analyze Examples
Section titled “Analyze Examples”With an input table of:┌─────────────────┐│ my_clothes │├─────────────────┤│ plaid pants ││ plaid hat ││ plaid shirt ││ shoes │└─────────────────┘
not_(my_clothes.regexp_match('p*'))┌─────────────────────────────────────┐│ not_(my_clothes.regexp_match('p*')) │├─────────────────────────────────────┤│ false ││ false ││ false ││ true │└─────────────────────────────────────┘SQL Syntax
Section titled “SQL Syntax”<expr> NOT RLIKE <pattern>SQL Examples
Section titled “SQL Examples”SELECT 'databend' not rlike 'd*';┌─────────────────────────────┐│ ('databend' not rlike 'd*') │├─────────────────────────────┤│ 0 │└─────────────────────────────┘