Contains |
[:], [!:], [LIKE] or [NOT LIKE] |
The field contains the search string,
e.g. title:Make It Happen
|
Equals |
[=] or [!=] |
The field equals or does not equal the search string,
e.g. url=/Make-It-Happen
|
Greater or Lesser Than |
[>] or [<] |
The field is greater or lesser than the numeric or date value,
e.g. modified>2014-10-14
|
Regular Expression |
[?], [!?], [REGEXP] or [NOT REGEXP] |
The field matches or doesn't match the advanced Regular
Expressions that are supported by MySQL,
e.g. content[?]This is (good|great)
|
In List |
[#], [!#], [IN] or [NOT IN] |
The field contains one of the values in the comma separated list,
e.g. id[#]100,105,125
|