index
indexSearch OperatorsSearch operators AND, OR, and NOT may be used to combine terms in order to broaden or narrow retrieval. Case does not matter when using search operators. For example, OR, Or, and or return the same results. indexindexBoolean OperatorsANDUse AND to find records containing all terms separated by the operator. ORUse OR to find records containing any of the terms separated by the operator. NOTUse NOT to exclude records containing certain words from your search. indexSearch Operator PrecedenceIf you use different operators in your search, the search is processed according to this order of precedence
indexcopper OR lead AND algae finds all records in which both lead AND algae are present as well as all records in which the word copper is present. (copper OR lead) AND algae finds all records in which the word algae is present together with either copper or lead. indexUse of ParenthesesUse parentheses to override operator precedence. The expression inside the parentheses is executed first. (cadmium AND gill*) NOT Pisces finds records containing both cadmium and gill (or gills), but excludes records containing the word Pisces. |
indexAND ExamplesBeverage AND bottle finds records containing both terms. Beverage AND bottle AND beer finds records containing all three terms. indexOR ExampleBeverage OR bottle finds records containing either beverage or bottle (or both). indexNOT ExampleBeverage NOT bottle finds records containing beverage but excludes records containing bottle. |