REGEXP
Returns true if the string <expr> matches the regular expression specified by the <pattern>, false otherwise.
Syntax
<expr> REGEXP <pattern>
Aliases
Examples
SELECT 'datalake' REGEXP 'd*', 'datalake' RLIKE 'd*';
┌────────────────────────────────────────────────────┐
│ ('datalake' regexp 'd*') │ ('datalake' rlike 'd*') │
├──────────────────────────┼─────────────────────────┤
│ true │ true │
└────────────────────────────────────────────────────┘