Skip to content

Commit

Permalink
updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Kastelic committed Aug 26, 2020
1 parent 3b7a5e8 commit 7a706cb
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,19 +159,21 @@ After the last user specified sort, order by unique ID is automatically appended
The entities can be filtered by using multiple operations:

* EQ | Equals
* EQIC | Equals ignore case
* EQIC | Case-insensitive equals
* NEQ | Not equal
* NEQIC | Not equal ignoring case
* NEQIC | Case-insensitive not equal
* LIKE | Pattern matching (% replaces characters, _ replaces a single character)
* LIKEIC | Pattern matching ignore case (% replaces characters, _ replaces a single character)
* LIKEIC | Case-insensitive pattern matching (% replaces characters, _ replaces a single character)
* NLIKE | Negated pattern matching (% replaces characters, _ replaces a single character)
* NLIKEIC | Case-insensitive negated pattern matching (% replaces characters, _ replaces a single character)
* GT | Greater than
* GTE | Greater than or equal
* LT | Lower than
* LTE | Lower than or equal
* IN | In set
* INIC | In set ignore case
* INIC | Case-insensitive in set
* NIN | Not in set
* NINIC | Not in set ignore case
* NINIC | Case-insensitive not in set
* ISNULL | Null
* ISNOTNULL | Not null

Expand Down

0 comments on commit 7a706cb

Please sign in to comment.