Use Boolean Operators in your search statements:
- AND (combine distinct concepts to narrow)
- OR (expand by finding synonyms to each concept)
- pig OR piglet OR swine OR porcine
- NOT (exclude terms)
Use Quotation marks to search for phrases
- "social housing"
- "magnetic resonance imaging"
Use "wild cards" for truncation (check the "help" section of a database to find out what symbols/wild cards are supported for various functionalities).
- * usually expands the root of a word
- handl*
- handle, handler, handling, ...
- ? or ! usually replaces 0 to 1 characters in a word
Use parentheses to indicate order of operations in your searches:
- Correct:
- (rabbit* OR lagamorph*) AND ("social housing" OR "group housing" OR "enriched cag*")
- Incorrect:
- rabbit* OR lagamorph* AND "social housing" OR "group housing" OR "enriched cag*"