BOOLEAN OPERATORS: AND, OR, NOT
USING IN DATABASES
See the examples below
A NORMAL search will find any articles with the word Dogs regardless of what other words may also be in the article.
Search for
dogs |
The search will retrieve these:
But not this:
An AND search will find articles with the word Dogs and with the word Cats together, but not separately.
Search for
dogs AND cats |
The search will retrieve this:
But not these:
An OR search will find articles with the word Dogs, with the word Cats, and with the words Dogs and Cats.
Search for
dogs OR cats |
The search will retrieve all three articles:
A NOT search will find the articles with the word Dogs in it, but won't find any articles with the word cats (even if dogs is in the article with cats.)
Search for
dogs NOT cats |
The search will retrieve this:
But not these: