Truncation |
Asterisk: * |
child* retrieves records with "child", "children", "childbirth", "childbearing", "childish", and so forth.
|
Wildcard (Single character) |
Question mark: ?
|
wom?n retrieves records with the words "woman" or "women" or "womyn" and so forth. N.B. At least 3 letters must precede a wildcard in a query.
|
Phrases |
Quation marks: "word1 word2"
Default: AND operators between words
|
"north pole" retrieves only records in which the words "north" and "pole" appear next to each other, in that exact order.
north pole--without quotation marks--retrieves articles with both words "north" and "pole", regardless of where the appear in the document.
|
Boolean operators |
AND, OR, NOT.
|
lincoln AND douglas retrieves articles that contain both "lincoln" and "douglas".
lincoln OR douglas retrieves articles that contain either "lincoln" or "douglas".
|
Proximity operators |
"word1 word2"~n
terms inside the quotation marks must appear within n words of eachother, in the specified order.
|
"henry thoreau"~2 retrieves "henry thoreau", "henry david thoreau", but not "thoreau, henry david".
|