Wondering if it is possible to incorporate regular expressions into a SQL statement on SQL Server? I’m only finding that Oracle supports Regular Expressions.
Wondering if it is possible to incorporate regular expressions into a SQL statement on
Share
No, not without extra help such as writing a CLR function or something similar. T-SQL doesn’t have builtin support for regular expressions.