numeric wildcard
What is the syntax for numeric wildcards in a LIKE statement? I know in SQL the syntax would be
LIKE '[0-9][0-9][0-9]'
But I cannot find anything in the documentation with this information.
0
What is the syntax for numeric wildcards in a LIKE statement? I know in SQL the syntax would be
LIKE '[0-9][0-9][0-9]'
But I cannot find anything in the documentation with this information.
Comments
Hi ,
You have REGEXP_LIKE().
Examples of using it:
There are more examples at this link in the Vertica Offical docs
https://my.vertica.com/docs/7.1.x/HTML/Content/Authoring/SQLReferenceManual/Functions/RegularExpressions/REGEXP_LIKE.htm