Skip to content
Snippets Groups Projects
Commit e7999cee authored by Arseniy Volynets's avatar Arseniy Volynets :boy_tone5:
Browse files

feat: support like operator

- Support like operator with signature:

expr1 LIKE expr2 [ESCAPE expr3]

which returns TRUE only if expr1 matches the
string specified by expr2 (pattern). '_' in
pattern matches any single character, '%'
matches any character 0 or more times. All
other characters match itself according to
case.

- Optional escape clause specifies character
to use for escaping '_' and '%'
parent ca1595b9
No related branches found
No related tags found
Loading
Showing
with 538 additions and 13 deletions
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment