v.23.3New Feature
Added REGEXP Operator for MySQL Compatibility
Added operator REGEXP (similar to operators "LIKE", "IN", "MOD" etc.) for better compatibility with MySQL #47869 (Robert Schulze).Why it matters
This feature enhances compatibility with MySQL by introducing theREGEXP operator, allowing users to perform pattern matching using regular expressions. It simplifies porting MySQL queries to ClickHouse and expands query expressiveness.How to use it
Use theREGEXP operator in WHERE clauses or other expressions to match strings against regular expressions, e.g., SELECT * FROM table WHERE column REGEXP 'pattern'.