IN

Selects documents that contain specified values in one or more document zones. A document zone represents a field in a version, for example the title or the body text (blob). The specified name must exactly match the zone name.

The following query expression searches document zones named "summary" for the word "safety"

"safety" <IN> summary

To search with multiple words, phrases, or topics enclose them in parentheses. The following query expression searches document zones named "summary" for the word "safety" and stemmed variations of the word "warning"

("safety", warning) <IN> summary

To search multiple zones, separate them with commas and enclose them in parentheses. The following query expression searches both the "summary" zone and the "title" zone for the word "safety" and stemmed variations of the word "warning"

("safety", warning) <IN> (summary, title)

You must enclose query expressions containing commas in parentheses. The following example searches the "summary" zone for the word "safety" and stemmed variations of the phrase "environmental regulation".

("safety", environmental regulation) <IN> summary

The following query expression searches both the "summary" zone and the "title" zone for the word "safety" and stemmed variations of the phrase "environmental regulation".

("safety", environmental regulation) <IN> (summary, title)