|
|
|
| Query's |
You may create text query's with Boolean-expressions in
it. The search words or phrases themselves may not contain the words AND, OR and NOT.
You may group expressions together by placing them within "( .. )".
See the following examples:
- pacific ocean
- you find documents that contain the words 'pacific'
or 'ocean'
- pacific or ocean
- same as above
- pacific and ocean
- you find documents that contain the words 'pacific'
and 'ocean'
- pacific not ocean
- you find documents that contain the word 'pacific',
but only those that not contain the word 'ocean'
- (pacific not ocean) and islanders
- you find documents that contain the word 'pacific'
and islanders, but only those that not contain the word 'ocean'
- pa*
- you find documents that contain words which starts
with 'pacific', eg. pacific, paradise and part.
|
|
|
|
|
|