From 30642a29a9d9127df741a256e205154ccb5d8687 Mon Sep 17 00:00:00 2001 From: Xin He Date: Fri, 25 Oct 2019 16:22:58 +0800 Subject: [PATCH] Update specification.md fix describe about filtering modifier "like" --- specification.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification.md b/specification.md index 6a787ca..c7b2742 100644 --- a/specification.md +++ b/specification.md @@ -794,7 +794,7 @@ modifier | meaning `"gt"` | greater than `"gte"` | greater than or equal to `"prefix"` | starts with -`"like"` | matches, as in SQL:
• underscore ("\_") for exactly one character
• percent ("%") for 0 or more characters
• "\_" for one underscore character
•"%" for one percent character. +`"like"` | matches, as in SQL:
• underscore ("\_") for exactly one character
• percent ("%") for 0 or more characters
• "\\\_" for one underscore character
•"\\%" for one percent character. `"notlike"` | does not match (as above) `"null"` | value is NULL `"notnull"` | value is not NULL