When you search with more than one search word, you need to tell the search engine what the relationship between the words is. For that we use Boolean operators:
The order of operations is usually AND before OR. You can override the order by using paranthesis ().
Databases have search boxes where you type in the search words and operators.
Some databases (e.g. Oula-Finna) require that the Boolean operators be capitalized, but with most other databases it does not matter.
OR operation searches for references that have one or more of the search words. The order of the words does not matter.
sing OR singer OR singing OR song
AND operation searches for references that have all of the search words. The order of the words does not matter.
Quite often AND operation is the default operation in databases. In that case it can be left unwritten.
NOT operator excludes a specific search word from the search results.
For example, by searching ((pandemic OR epidemic) NOT covid-19) you will get all references that mention pandemic or epidemic, but all the ones mentioning covid-19 will be excluded.
Be careful when using NOT operator. You might lose relevant references. The search engine does not understand why certain word is mentioned in the record. If it finds the excluded word, it will eliminate it from the search results, no matter how well the reference fits your other search words.