Term or Phrase |
Explanation |
More Information |
tennis |
The most basic search is a word. This will retrieve all documents that have the word "tennis" in the appropriate field. |
|
tennis OR racquet |
An example of combining search words. This retrieves all documents that contain either the term "tennis" or the term "racquet" in the appropriate field. |
See Boolean Expression |
tennis racquet |
This is the equivalent of the expression "tennis AND racquet". It retrieves only those documents that contain BOTH the words "tennis" and "racquet". |
See Boolean Expression |
tennis NOT racquet |
This retrieves only those documents that contain "tennis" and do not contain "racquet. |
See Boolean Expression |
"tennis racquet" |
This retrieves only those documents that contain the exact phrase "tennis racquet". |
See Boolean Expression |
tennis AND (racquet OR racket) |
This retrieves only those documents that contain the word "tennis" and either the word "racquet" or "racket". |
See Boolean Expression |
"tennis racquet"~5 |
This retrieves only those documents that contain the words "tennis" and "racquet" within 5 words of each other. |
See Proximity Searching |
racquet? |
Single Character Wildcard: ?. This retrieves those documents that contain the words "racquet" or "racquets". The "?" tells the search engine to find all words that start with "racquet" and have any single character at the end. |
See Wildcard Characters |
test* |
Multiple Character Wildcard: *. This retrieves those documents that contain the letters "test" and any other letter or letters at the end- e.g. test, tests, testing. |
See Wildcard Characters |
router^4 or switch |
Relevance Boosting. This retrieves documents that contain either the term "router" or the term "switch". The search engine weights the documents giving a weight of 4 for each occurrence of the term "router" and a weight of 1 for occurrence of the term "switch". The results are displayed showing the highest weighted documents first. |
See Relevance Boosting |
4/1/2009->4/15/2009 |
Date Field Searches. This retrieves documents whose "dates" are in the date range starting on April 1, 2009 and ending on and including April 15, 2009. |
See Date Field Searching |