• +
A leading plus sign indicates that this word must be present in each row that is returned.
See the samples below.
• -
A leading minus sign indicates that this word must not be present in any of the rows that are returned.
Note: The `-` operator acts only to exclude rows that are otherwise matched by other search terms. Thus, a search that contains only terms preceded by `-` returns an empty result. It does not return "all rows except those containing any of the excluded terms."
See the samples below.
• (no operator)
By default (when neither `+` nor `-` is specified) the word is optional, but the rows that contain it are rated higher.
See the samples below.
• > <
These two operators are used to change a word's contribution to the relevance value that is assigned to a row. The `>` operator increases the contribution and the ` <` operator decreases it.
See the samples below.
• ( )
Parentheses group words into subexpressions. Parenthesized groups can be nested.
See the samples below.
• ~
A leading tilde acts as a negation operator, causing the word's contribution to the row's relevance to be negative. This is useful for marking "noise'' words. A row containing such a word is rated lower than others, but is not excluded altogether, as it would be with the `-` operator.
See the samples below.
• *
The asterisk serves as the truncation (or wildcard) operator. Unlike the other operators, it should be appended to the word to be affected. Words match if they begin with the word preceding the `*` operator.
See the samples below.
• “
A phrase that is enclosed within double quote (`“`) characters matches only rows that contain the phrase literally, as it was typed. For example, "coal production" does not match "coal, production". If the phrase contains no words that are in the index, the result is empty. For example, if all words are either stopwords or shorter than the minimum length of indexed words, the result is empty.
See the samples below.
THE FOLLOWING SAMPLES DEMONSTRATE SOME SEARCH STRINGS:
• ' coal production `
Find rows that contain at least one of the two words.
• ' +coal +production `
Find rows that contain both words.
• ` +coal production '
Find rows that contain the word `coal`, but rank rows higher if they also contain `production`.
• ' +coal –production `
Find rows that contain the word `coal` but not `production`.
• ' +coal ~production `
Find rows that contain the word `coal`, but if the row also contains the word `production`, rate it lower than if row does not. This is "softer" than a search for '+coal –production`, for which the presence of `production` causes the row not to be returned at all.
• ' +coal +(>production <delivery) `
Find rows that contain the words `coal` and `production`, or `coal` and `delivery` (in any order), but rank `coal production` higher than `coal delivery`.
• 'generat*'
Find rows that contain words such as 'generate`, `generation`, `generator`.
• ` “corporate efficiency” `
Find rows that contain the exact phrase ` corporate efficiency ` (for example, rows that contain ` corporate efficiency improvement ` but not `corporate governance efficiency`). Note that the ` “ ` characters that enclose the phrase are operator characters that delimit the phrase. They are not the quotes that enclose the search string itself.