Boolean Operators
Operator | Example | Finds articles with... |
---|---|---|
AND (also + or &) | badgers AND tuberculosis | both the word badgers and the word tuberculosis |
OR | badgers AND (tuberculosis OR TB) | either the word tuberculosis or the word TB and the word badgers |
NOT | badgers AND Tuberculosis NOT vaccination | the words badgers, tuberculosis but not the word vaccination |
Note: the AND operator is applied even when you do not enter it between your keywords:
When you use multiple operators, the database applies them in this order:
When your search query includes multiple Boolean operators, use brackets "( )" to help the search engine group them in a way that is relevant for your research:
"badgers" OR "meles meles" AND tuberculosis finds all documents in which the phrase "meles meles" AND the word tuberculosis are both present as well as all documents in which the word badgers is present.
(badgers OR "meles meles") AND tuberculosis will only find documents that include the word tuberculosis in addition to either the word badgers or the phrase "meles meles".
Phrase Searching
Wrap keywords in quotation marks to search for them as an exact phrase:
Wildcard Searching
Use a question mark (?) in a search term to match any one character, and use an asterisk (*) in a search term to match any set of zero or more characters.
Wildcards cannot be used at the beginning of a search query or when searching for a phrase.
Special characters