...
The Between operator selects values within a given range. The values can be numbers, text, or dates. The Between operator is inclusive: begin and end values are included.
All Of: If all records are filter which are present in input .
None Of: If all record which are present in input should not get filter
Any Of: If any one or more records are fetch present in input.
Match:
Match operator to compare a string expression with a pattern. returns true or false depending on whether its pattern matches the given string. The match operator supports these wildcard characters in the quoted string. Matches any of the enclosed characters, including ranges, as in [ a-z ].
...